Skip to content

Commit

Permalink
Separate artifact upload step for each binary
Browse files Browse the repository at this point in the history
  • Loading branch information
ionthegeek authored Apr 21, 2023
1 parent 0d0e070 commit 69b6e46
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,14 @@ jobs:
gzip promdump/promdump
gzip promremotewrite/promremotewrite
- name: Upload artifacts
- name: Upload promdump
uses: actions/upload-artifact@v3
with:
name: compressed-binaries
path: |
promdump/promdump.gz
promremotewrite/promremotewrite.gz
name: promdump
path: promdump/promdump.gz

- name: Upload promremotewrite
uses: actions/upload-artifact@v3
with:
name: promremotewrite
path: promremotewrite/promremotewrite.gz

0 comments on commit 69b6e46

Please sign in to comment.