Skip to content

Commit

Permalink
change run sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Aug 24, 2023
1 parent c0e11d2 commit 4fdbbcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/daily-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ jobs:
- name: Read inputs
id: getinputs
run: |
IN_IGNORE=${{ github.event.inputs.use_ignore }}
# 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_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_ENVIRON=${{ github.event.inputs.use_environ == '' && github.event.inputs.use_environ || 'snapshots' }}" >> $GITHUB_OUTPUT

call-workflow-tarball:
uses: ./.github/workflows/tarball.yml
Expand Down

0 comments on commit 4fdbbcf

Please sign in to comment.