From 4099794d079c028489bf2340a901add6ef24bfb5 Mon Sep 17 00:00:00 2001 From: Henry Qin Date: Sun, 7 Apr 2024 00:27:05 -0700 Subject: [PATCH] Add artifact uploads for other jobs. --- .github/workflows/build-artifacts.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/build-artifacts.yml b/.github/workflows/build-artifacts.yml index ae96f38..6de10fa 100644 --- a/.github/workflows/build-artifacts.yml +++ b/.github/workflows/build-artifacts.yml @@ -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 @@ -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