Skip to content

Bump the all group in /plugin with 2 updates (#548) #85

Bump the all group in /plugin with 2 updates (#548)

Bump the all group in /plugin with 2 updates (#548) #85

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
test:
uses: ./.github/workflows/test.yml
release:
needs: ['test']
runs-on: ubuntu-latest
steps:
# git checkout
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
# Go env
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
# Release
- name: Create Release
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}