generate token to create winget manifest release branch #355
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 | |
on: { push } | |
jobs: | |
goreleaser: | |
name: Release | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
packages: write | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.WINGET_APP_ID }} | |
private_key: ${{ secrets.WINGET_APP_PRIVATE_KEY }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: { fetch-depth: 0 } | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: { go-version: 1.19 } | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: { platforms: linux/arm64 } | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
if: startsWith(github.ref, 'refs/tags/v') | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Import GPG key | |
id: import_gpg | |
uses: crazy-max/ghaction-import-gpg@v5 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
- name: Set up release notes | |
run: | | |
echo ${{ steps.import_gpg.outputs.fingerprint }} > key.fingerprint | |
gpg --armor --export ${{ steps.import_gpg.outputs.keyid }} > key.asc | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
version: latest | |
args: release --clean --snapshot=${{ !startsWith(github.ref, 'refs/tags/v') }} | |
env: | |
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }} | |
WINGET_GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} |