ci - mirror artifacts from v0.21.0 #35
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
on: | |
push: | |
tags: | |
- '*' | |
env: | |
SOURCE_REPO: core-platform | |
name: release | |
jobs: | |
release-artifacts: | |
runs-on: [ARM64, self-hosted, Linux] | |
steps: | |
# See https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow | |
# For why we need to generate a token and not use the default | |
- name: Generate token | |
id: generate_token | |
uses: chanzuckerberg/[email protected] | |
with: | |
app_id: ${{ secrets.CZI_RELEASE_PLEASE_APP_ID }} | |
private_key: ${{ secrets.CZI_RELEASE_PLEASE_PK }} | |
# clone the artifact repo | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ steps.generate_token.outputs.token }} | |
path: ${{ github.event.repository.name }} | |
# clone the source repo | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ steps.generate_token.outputs.token }} | |
repository: chanzuckerberg/${{ env.SOURCE_REPO }} | |
# we need to clone the source repo into a directory within the artifact repo so that goreleaser will build the source but use the tag from the artifact repo | |
path: ${{ github.event.repository.name }}/core/cli/${{ env.SOURCE_REPO }} | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ${{ github.event.repository.name }}/core/cli/${{ env.SOURCE_REPO }}/core/go.mod | |
cache: true | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
version: latest | |
workdir: ${{ github.event.repository.name }}/core/cli/ | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} |