Skip to content

Commit

Permalink
fix: actions docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Urban committed Feb 22, 2024
1 parent a65446b commit 6d36578
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:
#- name: Test with the Go CLI
# run: go test
- name: Archive production artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: production-artifacts-${{matrix.goarch}}
name: production-artifacts
path: |
backend/
frontend/public
Expand All @@ -75,7 +75,7 @@ jobs:
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: production-artifacts-*
name: production-artifacts
merge-multiple: true
- name: Set up Docker Build
uses: docker/setup-buildx-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ jobs:
#- name: Test with the Go CLI
# run: go test
- name: Archive production artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: production-artifacts-${{matrix.goarch}}
name: production-artifacts
path: |
backend/
frontend/public
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: production-artifacts-*
name: production-artifacts
merge-multiple: true
- name: Set up Docker Build
uses: docker/setup-buildx-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ jobs:
#- name: Test with the Go CLI
# run: go test
- name: Archive production artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: production-artifacts-${{matrix.goarch}}
name: production-artifacts
path: |
backend/
frontend/public
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: production-artifacts-*
name: production-artifacts
merge-multiple: true
- name: Set up Docker Build
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit 6d36578

Please sign in to comment.