v0.6.0 #23
Workflow file for this run
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: Release | |
run-name: ${{ inputs.tag_name }} | |
on: | |
release: | |
types: [created] | |
permissions: | |
contents: write | |
id-token: write | |
packages: write | |
jobs: | |
# we build on darwin because goreleaser makes it too hard to have separate | |
# package-creation steps for each platform, and we _need_ darwin for code | |
# signing OSX binaries. | |
darwin: | |
runs-on: macos-latest | |
env: | |
flags: "" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
cache: true | |
- name: Configure darwin keychain | |
env: | |
APPLE_DEVELOPER_ID: ${{ vars.APPLE_DEVELOPER_ID }} | |
APPLE_APPLICATION_CERT: ${{ secrets.APPLE_APPLICATION_CERT }} | |
APPLE_APPLICATION_CERT_PASSWORD: ${{ secrets.APPLE_APPLICATION_CERT_PASSWORD }} | |
APPLE_SIGNING_PASSWORD: ${{ secrets.APPLE_SIGNING_PASSWORD }} | |
run: | | |
keychain="$RUNNER_TEMP/buildagent.keychain" | |
keychain_password="password1" | |
security create-keychain -p "$keychain_password" "$keychain" | |
security default-keychain -s "$keychain" | |
security unlock-keychain -p "$keychain_password" "$keychain" | |
base64 -D <<<"$APPLE_APPLICATION_CERT" > "$RUNNER_TEMP/cert.p12" | |
security import "$RUNNER_TEMP/cert.p12" -k "$keychain" -P "$APPLE_APPLICATION_CERT_PASSWORD" -T /usr/bin/codesign | |
security set-key-partition-list -S "apple-tool:,apple:,codesign:" -s -k "$keychain_password" "$keychain" | |
rm "$RUNNER_TEMP/cert.p12" | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
APPLE_DEVELOPER_ID: ${{ vars.APPLE_DEVELOPER_ID }} | |
APPLE_SIGNING_PASSWORD: ${{ secrets.APPLE_SIGNING_PASSWORD }} | |
- name: Notarize Darwin binaries | |
env: | |
APPLE_DEVELOPER_ID: ${{ vars.APPLE_DEVELOPER_ID }} | |
APPLE_APPLICATION_CERT: ${{ secrets.APPLE_APPLICATION_CERT }} | |
APPLE_APPLICATION_CERT_PASSWORD: ${{ secrets.APPLE_APPLICATION_CERT_PASSWORD }} | |
APPLE_SIGNING_PASSWORD: ${{ secrets.APPLE_SIGNING_PASSWORD }} | |
run: | | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: macos | |
if-no-files-found: error | |
retention-days: 7 | |
path: | | |
dist/*.tar.gz | |
dist/*.zip |