Switch back to tar because the zip stupidly does not preserve executable #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Artifacts | |
on: [push] | |
jobs: | |
build-linux-artifact: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make | |
run: make | |
# This step does a stupid double-wrapping but is necessary because | |
# upload-artifact uses a zip command (which cannot be disabled) that | |
# removes executable bits. | |
- name: package | |
run: tar cvfz protobufjson-linux.tar.gz JsonToProto ProtoToJson | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: protobufjson-linux-${{ github.sha }}.tar.gz | |
path: protobufjson-linux.tar.gz | |
if-no-files-found: error | |
compression-level: 0 | |
build-osx-intel-artifact: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make | |
run: make | |
# This step does a stupid double-wrapping but is necessary because | |
# upload-artifact uses a zip command (which cannot be disabled) that | |
# removes executable bits. | |
- name: package | |
run: tar cvfz protobufjson-macos-intel.tar.gz JsonToProto ProtoToJson | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: protobufjson-macos-intel-${{ github.sha }}.tar.gz | |
path: protobufjson-macos-intel.tar.gz | |
if-no-files-found: error | |
compression-level: 0 | |
build-osx-arm-artifact: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make | |
run: make | |
# This step does a stupid double-wrapping but is necessary because | |
# upload-artifact uses a zip command (which cannot be disabled) that | |
# removes executable bits. | |
- name: package | |
run: tar cvfz protobufjson-macos-arm.tar.gz JsonToProto ProtoToJson | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: protobufjson-macos-arm-${{ github.sha }}.tar.gz | |
path: protobufjson-macos-arm.tar.gz | |
if-no-files-found: error | |
compression-level: 0 |