Skip to content

Reorganize project files & reduce public interface (#212) #17

Reorganize project files & reduce public interface (#212)

Reorganize project files & reduce public interface (#212) #17

Workflow file for this run

name: release
on:
push:
tags:
- "*"
workflow_dispatch: {} # support manual runs
permissions:
contents: write
jobs:
release:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: bufbuild/[email protected]
with:
github_token: ${{ github.token }}
- name: Build plugins
run: make buildplugins
- name: Zip artifacts
run: |
cd ./.tmp/bin
mkdir ./artifacts
tar -zcvf ./artifacts/protoc-gen-connect-swift.tar.gz ./protoc-gen-connect-swift
tar -zcvf ./artifacts/protoc-gen-connect-swift-mocks.tar.gz ./protoc-gen-connect-swift-mocks
cd ./artifacts
for file in $(find . -maxdepth 1 -type f | sed 's/^\.\///' | sort | uniq); do
shasum -a 256 "${file}" >> sha256.txt
done
- name: Publish release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
append_body: true
files: |
./.tmp/bin/artifacts/*