Skip to content

Bump marked from 11.1.1 to 12.0.0 in /ui (#314) #344

Bump marked from 11.1.1 to 12.0.0 in /ui (#314)

Bump marked from 11.1.1 to 12.0.0 in /ui (#314) #344

Workflow file for this run

name: release
on:
push:
branches:
- 'main'
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker Login
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21.6'
cache: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
if: success() && startsWith(github.ref, 'refs/tags/')
with:
distribution: goreleaser
version: latest
args: release --clean --skip-docker
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}