Skip to content

chore(deps): bump github.com/containerd/containerd from 1.7.31 to 1.7.32 #52

chore(deps): bump github.com/containerd/containerd from 1.7.31 to 1.7.32

chore(deps): bump github.com/containerd/containerd from 1.7.31 to 1.7.32 #52

Workflow file for this run

name: GoReleaser
on:
push:
branches:
- master
tags:
- "*"
pull_request:
permissions:
contents: write
packages: write
jobs:
snapshot:
name: GoReleaser Snapshot Build
if: "!startsWith(github.ref, 'refs/tags/')"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: "1.26.3"
cache: true
- name: GoReleaser (Snapshot)
uses: goreleaser/goreleaser-action@v7
with:
distribution: goreleaser
version: latest
args: build --snapshot --clean
release:
name: GoReleaser Release
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: "1.26.3"
cache: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate GitHub App Token for Homebrew Tap
id: app-token
uses: actions/create-github-app-token@v3
with:
client-id: ${{ secrets.TAP_APP_ID }}
private-key: ${{ secrets.TAP_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: "homebrew-gitopsctl"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v7
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAP_GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}