diff --git a/.github/workflows/create-build.yml b/.github/workflows/create-build.yml index 4f37b0a..170d6cb 100644 --- a/.github/workflows/create-build.yml +++ b/.github/workflows/create-build.yml @@ -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