Skip to content

Commit

Permalink
fix trunk path
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHend committed Jul 31, 2023
1 parent 506708e commit 8929030
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/extension_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,20 @@ jobs:
workspaces: pg-vectorize
# Additional directories to cache
cache-directories: /home/runner/.pgrx
- name: Restore cached binaries
uses: actions/cache@v2
with:
path: |
/usr/local/bin/stoml
~/.cargo/bin/trunk
key: ${{ runner.os }}-bins-${{ github.sha }}
restore-keys: |
${{ runner.os }}-bins-
- name: trunk build
working-directory: ./
run: trunk build
run: ~/.cargo/bin/trunk build
- name: trunk publish
working-directory: ./
env:
TRUNK_API_TOKEN: ${{ secrets.TRUNK_AUTH_TOKEN }}
run: trunk publish
run: ~/.cargo/bin/trunk publish

0 comments on commit 8929030

Please sign in to comment.