Skip to content

Commit

Permalink
Update GHA workflow to save hash on global variable
Browse files Browse the repository at this point in the history
  • Loading branch information
QU3B1M committed Oct 29, 2024
1 parent 8b12a41 commit 71e8458
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
working-directory: ./plugins/${{ matrix.plugins }}

- name: Save commit hash
run: echo "plugins_hash=$(git rev-parse --short HEAD) >> "$GITHUB_OUTPUT"
run: echo "plugins_hash=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"

- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
- run: ls -lR build/distributions

- name: Save commit hash
run: echo "reporting_hash=$(git rev-parse --short HEAD) >> "$GITHUB_OUTPUT"
run: echo "reporting_hash=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"

- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 71e8458

Please sign in to comment.