Skip to content

Commit

Permalink
Adjust workflow to use proper variables. (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhlexPlexico authored Feb 16, 2024
1 parent f6b0147 commit 356514f
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/create-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,17 @@ jobs:
with:
submodules: true

- name: Run Build Script
- if: ${{ github.event.inputs.build_type == 'Nightly' }}
name: Run Build Script Nightly
run: |
chmod +x linux_build_rando.sh
./linux_build_rando.sh
- if: ${{ github.event.inputs.build_type == 'Release' }}
name: Run Build Script Release
env:
url_tag: v${{ github.event.inputs.version }}
run: |
if [[ ${{ github.event.inputs.build_type == 'Release' }} == true ]]; then
url_tag=v${{ github.event.inputs.version }}
fi
chmod +x linux_build_rando.sh
./linux_build_rando.sh
Expand Down

0 comments on commit 356514f

Please sign in to comment.