Skip to content

Commit

Permalink
fix dist paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhoonbang committed Jan 15, 2025
1 parent a9e6ad7 commit 628858d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-publish-develop-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ jobs:

- uses: actions/cache/[email protected]
with:
path: dist/linux_amd64_v1
path: ./dist/linux_amd64
key: chainlink-amd64-${{ github.sha }}
fail-on-cache-miss: true

- uses: actions/cache/[email protected]
with:
path: dist/linux_arm64_v8.0
path: ./dist/linux_arm64
key: chainlink-arm64-${{ github.sha }}
fail-on-cache-miss: true

Expand All @@ -85,11 +85,11 @@ jobs:
include:
- runner: ubuntu-latest
goarch: amd64
dist_name: linux_amd64_v1
dist_name: linux_amd64

- runner: ubuntu-24.04-4cores-16GB-ARM
goarch: arm64
dist_name: linux_arm64_v8.0
dist_name: linux_arm64
steps:
- name: Checkout repository
uses: actions/[email protected]
Expand All @@ -108,7 +108,7 @@ jobs:
- id: cache
uses: actions/[email protected]
with:
path: dist/${{ matrix.dist_name }}
path: ./dist/${{ matrix.dist_name }}
key: chainlink-${{ matrix.goarch }}-${{ github.sha }}

- name: Build images for ${{ matrix.goarch }}
Expand Down

0 comments on commit 628858d

Please sign in to comment.