Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Y0SH1M4S73R committed Jul 8, 2024
1 parent f6431a8 commit ae0a34d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ on:
jobs:
check-should-rebuild:
outputs:
should-rebuild: ${{ steps.changed-files.outputs.any_changed == 'true' || inputs.release != 'No Release' || inputs.force_rebuild }}
should-rebuild: ${{ (steps.changed-files.outputs.any_changed == 'true') || (inputs.release != 'No Release') || inputs.force_rebuild }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Check Modified Files
uses: tj-actions/changed-files@v44
if: inputs.release != 'No Release' && !inputs.force_rebuild
if: (inputs.release != 'No Release') && !inputs.force_rebuild
id: changed-files
with:
files: |
Expand Down

0 comments on commit ae0a34d

Please sign in to comment.