Skip to content

Commit

Permalink
fix(infra): try fix download action
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Urban committed Feb 22, 2024
1 parent c423a67 commit a6b6f3a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: production-artifacts
name: production-artifacts-${{matrix.goarch}}
path: |
backend/
frontend/public
Expand All @@ -79,7 +79,7 @@ jobs:
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: production-artifacts
name: production-artifacts-*

- name: Set up Docker Build
uses: docker/setup-buildx-action@v3
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: production-artifacts
name: production-artifacts-${{matrix.goarch}}
path: |
backend/
frontend/public
Expand All @@ -73,7 +73,8 @@ 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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: production-artifacts
name: production-artifacts-${{matrix.goarch}}
path: |
backend/
frontend/public
Expand All @@ -73,7 +73,7 @@ jobs:
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: production-artifacts
name: production-artifacts-*

- name: Set up Docker Build
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit a6b6f3a

Please sign in to comment.