Skip to content

Commit

Permalink
Use /tmp/binaries on $PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrisbin committed Jul 19, 2024
1 parent 67e81a7 commit d409636
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
outputs:
tags: ${{ steps.meta.outputs.tags }}

action:
restyled:
needs: build
runs-on: ubuntu-latest
steps:
Expand All @@ -74,11 +74,14 @@ jobs:
ref: ${{ github.event.pull_request.head.ref }}

# BEGIN actions/setup
- run: |
mkdir -p /tmp/binaries
echo "/tmp/binaries" >>"$GITHUB_ENV"
- uses: actions/download-artifact@v4
with:
name: binaries
path: ./tmp
- run: chmod +x ./tmp/restyle-gha
path: /tmp/binaries
- run: chmod +x /tmp/binaries/restyle-gha
# END actions/setup

- uses: ./actions/run
Expand Down

0 comments on commit d409636

Please sign in to comment.