Skip to content

build(deps): bump golang.org/x/text from 0.3.7 to 0.3.8 #78

build(deps): bump golang.org/x/text from 0.3.7 to 0.3.8

build(deps): bump golang.org/x/text from 0.3.7 to 0.3.8 #78

Workflow file for this run

name: goreleaser
on:
pull_request:
branches:
- "master"
push:
tags:
- v*.*.*
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18.5
- name: Login to Container Registries
env:
GHCR_PAT: ${{ secrets.GHCR_PAT }}
run: |
echo $GHCR_PAT | docker login ghcr.io --username $GITHUB_ACTOR --password-stdin
- name: Snapshot
if: "!startsWith(github.ref, 'refs/tags/v')"
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_VERSION: ${{ github.ref_name }}
- name: Release
if: startsWith(github.ref, 'refs/tags/v')
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_VERSION: ${{ github.ref_name }}