Skip to content

Commit

Permalink
Pass cache to second job
Browse files Browse the repository at this point in the history
  • Loading branch information
lubnar committed Oct 24, 2024
1 parent 566f316 commit 4a72a6f
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/build-onyx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,23 @@ jobs:
working-directory: onyx
run: |
make setup
make build
make build
test:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Setup Golang caches
id: go-cache
uses: actions/cache@v3
with:
path: |
onyx
restore-keys: |
${{ runner.os }}-golang-
- name: Check
run: ls -ltr onyx/bin

0 comments on commit 4a72a6f

Please sign in to comment.