Skip to content

Commit

Permalink
🐛 Make set-env.sh executable before running in the lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
yezz123 committed Feb 6, 2025
1 parent 519e6e6 commit 9cd0298
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rust/lint/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ runs:
id: meta
env:
manifest_dir: ${{ inputs.manifest_dir }}
run: $GITHUB_ACTION_PATH/scripts/set-env.sh
run: |
chmod +x $GITHUB_ACTION_PATH/scripts/set-env.sh
# Set metadata for scan job
$GITHUB_ACTION_PATH/scripts/set-env.sh
- uses: Swatinem/rust-cache@81d053bdb0871dcd3f10763c8cc60d0adc41762b # v1

Expand Down

0 comments on commit 9cd0298

Please sign in to comment.