Skip to content

Commit

Permalink
chore: add branch name in artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
valerymelou committed Jul 13, 2024
1 parent 8971d35 commit 037e8e7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: build-output
name: build-output-${{ github.ref_name }}
path: |
dist
Expand All @@ -35,7 +35,8 @@ jobs:
- name: Download build result
uses: actions/download-artifact@v4
with:
name: build-output
path: dist
name: build-output-${{ github.ref_name }}

- uses: FirebaseExtended/action-hosting-deploy@v0
with:
Expand All @@ -55,7 +56,8 @@ jobs:
- name: Download build result
uses: actions/download-artifact@v4
with:
name: build-output
path: dist
name: build-output-${{ github.ref_name }}

- uses: FirebaseExtended/action-hosting-deploy@v0
with:
Expand Down

0 comments on commit 037e8e7

Please sign in to comment.