Skip to content

Merge pull request #2 from AlayaCare/feature/Allow_filtering_by_messa… #7

Merge pull request #2 from AlayaCare/feature/Allow_filtering_by_messa…

Merge pull request #2 from AlayaCare/feature/Allow_filtering_by_messa… #7

Workflow file for this run

name: Build and Release
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
check-latest: true
- name: Tag Release
id: tag_release
uses: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}