Skip to content

Commit

Permalink
Add artifact uploads for other jobs.
Browse files Browse the repository at this point in the history
  • Loading branch information
hq6 committed Apr 7, 2024
1 parent 9fa42a3 commit 4099794
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ jobs:
- uses: actions/checkout@v4
- name: make
run: make
- uses: actions/upload-artifact@v4
with:
name: protobufjson-macos-intel-${{ github.sha }}.tar.gz
path: |
JsonToProto
ProtoToJson
if-no-files-found: error

build-osx-arm-artifact:
runs-on: macos-latest
Expand All @@ -33,3 +40,10 @@ jobs:
- uses: actions/checkout@v4
- name: make
run: make
- uses: actions/upload-artifact@v4
with:
name: protobufjson-macos-arm-${{ github.sha }}.tar.gz
path: |
JsonToProto
ProtoToJson
if-no-files-found: error

0 comments on commit 4099794

Please sign in to comment.