Skip to content

Commit

Permalink
Merge pull request #124 from ironbeer/fix/gha-error
Browse files Browse the repository at this point in the history
Fix `no such file or directory` error in Github actions
  • Loading branch information
tak1827 authored Dec 23, 2024
2 parents 612da64 + 402ed00 commit 11ab2ba
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,8 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Cache Docker Layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx
restore-keys: ${{ runner.os }}-buildx-
- name: Create binaries directory
run: mkdir ./binaries

- name: Build and Push
uses: docker/bake-action@v4
Expand All @@ -48,8 +44,8 @@ jobs:
push: true
set: |
*.platform=linux/amd64,linux/arm64
*.cache-from=type=local,src=/tmp/.buildx-cache
*.cache-to=type=local,dest=/tmp/.buildx-cache,mode=max
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
binaries.output=type=local,dest=./binaries
- name: Check version label
Expand Down

0 comments on commit 11ab2ba

Please sign in to comment.