Skip to content

chore(deps): bump google.golang.org/protobuf from 1.30.0 to 1.33.0 (#… #53

chore(deps): bump google.golang.org/protobuf from 1.30.0 to 1.33.0 (#…

chore(deps): bump google.golang.org/protobuf from 1.30.0 to 1.33.0 (#… #53

Workflow file for this run

name: tfsec github docker release
on:
push:
tags:
- v*
jobs:
build:
name: Create GHCR release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
- name: Import GPG key
id: import_gpg
uses: crazy-max/[email protected]
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v2
- name: Docker Login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Release
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --rm-dist -f .goreleaser_github.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}