chore: bring in spicedb and update compilation (#635) #105
Workflow file for this run
This file contains hidden or 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 for Docker and MacOS" | |
| on: | |
| push: | |
| tags: | |
| - "v[0-9]+.[0-9]+.[0-9]+" | |
| jobs: | |
| github: | |
| runs-on: "macos-latest" | |
| steps: | |
| - uses: "actions/checkout@v6" | |
| with: | |
| fetch-depth: 0 | |
| - name: "Install cross-compilers" | |
| run: | | |
| brew tap messense/macos-cross-toolchains | |
| brew install x86_64-unknown-linux-gnu x86_64-unknown-linux-musl aarch64-unknown-linux-gnu aarch64-unknown-linux-musl mingw-w64 | |
| echo "SDKROOT=$(xcrun --sdk macosx --show-sdk-path)" >> $GITHUB_ENV | |
| - uses: "authzed/actions/setup-go@main" | |
| - uses: "goreleaser/goreleaser-action@v7" | |
| with: | |
| distribution: "goreleaser-pro" | |
| # NOTE: keep in sync with goreleaser version in other job. | |
| # github actions don't allow yaml anchors. | |
| version: "v2.12.5" | |
| args: "release --clean" | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| HOMEBREW_TAP_GITHUB_TOKEN: "${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}" | |
| GORELEASER_KEY: "${{ secrets.GORELEASER_KEY }}" | |
| GEMFURY_PUSH_TOKEN: "${{ secrets.GEMFURY_PUSH_TOKEN }}" | |
| - name: "Notify in Slack if failure" | |
| if: "${{ failure() }}" | |
| uses: "slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a" # v2.1.1 | |
| with: | |
| webhook: "${{ secrets.SLACK_BUILDS_WEBHOOK_URL }}" | |
| webhook-type: "incoming-webhook" | |
| payload: | | |
| text: "Release failure." | |
| blocks: | |
| - type: "section" | |
| text: | |
| type: "mrkdwn" | |
| text: | | |
| :x: @eng-oss Release failure. Please take a look. | |
| *Repository:* <${{ github.server_url }}/${{ github.repository }}|${{ github.repository }}> | |
| docker: | |
| runs-on: "depot-ubuntu-latest-arm" | |
| steps: | |
| - uses: "actions/checkout@v6" | |
| with: | |
| fetch-depth: 0 | |
| - uses: "authzed/actions/docker-login@main" | |
| with: | |
| quayio_token: "${{ secrets.QUAYIO_PASSWORD }}" | |
| github_token: "${{ secrets.GITHUB_TOKEN }}" | |
| dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}" | |
| - name: "Install linux cross-compilers" | |
| run: "sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu gcc-mingw-w64-x86-64" | |
| - uses: "authzed/actions/setup-go@main" | |
| - uses: "goreleaser/goreleaser-action@v7" | |
| with: | |
| distribution: "goreleaser-pro" | |
| # NOTE: keep in sync with goreleaser version in other job. | |
| # github actions don't allow yaml anchors. | |
| version: "v2.12.5" | |
| args: "release --config=.goreleaser.docker.yml --clean" | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| GORELEASER_KEY: "${{ secrets.GORELEASER_KEY }}" | |
| - name: "Notify in Slack if failure" | |
| if: "${{ failure() }}" | |
| uses: "slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a" # v2.1.1 | |
| with: | |
| webhook: "${{ secrets.SLACK_BUILDS_WEBHOOK_URL }}" | |
| webhook-type: "incoming-webhook" | |
| payload: | | |
| text: "Release failure." | |
| blocks: | |
| - type: "section" | |
| text: | |
| type: "mrkdwn" | |
| text: | | |
| :x: @eng-oss Release failure. Please take a look. | |
| *Repository:* <${{ github.server_url }}/${{ github.repository }}|${{ github.repository }}> |