diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml index 379a1f7..42f7e93 100644 --- a/.github/workflows/daily-build.yml +++ b/.github/workflows/daily-build.yml @@ -49,12 +49,8 @@ jobs: - name: Read inputs id: getinputs run: | -# IN_IGNORE=${{ github.event.inputs.use_ignore }} -# echo "INPUTS_IGNORE=${IN_IGNORE:-'ignore'}" >> $GITHUB_OUTPUT - echo "INPUTS_IGNORE=${{ github.event.inputs.use_ignore == '' && github.event.inputs.use_ignore || 'ignore' }}" >> $GITHUB_OUTPUT -# IN_ENVIRON=${{ github.event.inputs.use_environ }} -# echo "INPUTS_ENVIRON=${IN_ENVIRON:-'snapshots'}" >> $GITHUB_OUTPUT - echo "INPUTS_ENVIRON=${{ github.event.inputs.use_environ == '' && github.event.inputs.use_environ || 'snapshots' }}" >> $GITHUB_OUTPUT + echo "INPUTS_IGNORE=${{ ((github.event.inputs.use_ignore == '' && github.event.inputs.use_ignore) || 'ignore') }}" >> $GITHUB_OUTPUT + echo "INPUTS_ENVIRON=${{ ((github.event.inputs.use_environ == '' && github.event.inputs.use_environ) || 'snapshots') }}" >> $GITHUB_OUTPUT call-workflow-tarball: uses: ./.github/workflows/tarball.yml