* use buildjet 4vcpu, 16gb runners * Delete .gitpod.yml * Update lint-pr.yml * Update clean-artifacts.yml * Update proto-docker.yml * Update proto.yml * Update stale.yml * Update proto.yml * Update atlas.yml * Update check-docs.yml * Update proto-registry.yml * Update .github/workflows/dependencies-review.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/linkchecker.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/labeler.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/docker.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/deploy-docs.yml Co-authored-by: Marko <marko@baricevic.me> * Update .github/workflows/codeql-analysis.yml Co-authored-by: Marko <marko@baricevic.me> * go file change * yaml * Update simapp/app.go Co-authored-by: Julien Robert <julien@rbrt.fr> Co-authored-by: faddat <jacobgadikian@gmail.com> Co-authored-by: Julien Robert <julien@rbrt.fr>
27 lines
775 B
YAML
27 lines
775 B
YAML
name: Release
|
|
# This workflow helps with creating releases.
|
|
# This job will only be triggered when a tag (vX.X.x) is pushed
|
|
on:
|
|
push:
|
|
# Sequence of patterns matched against refs/tags
|
|
tags:
|
|
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: buildjet-4vcpu-ubuntu-2004
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.18
|
|
- name: Unshallow
|
|
run: git fetch --prune --unshallow
|
|
- name: Create release
|
|
uses: goreleaser/goreleaser-action@v3
|
|
with:
|
|
args: release --rm-dist --release-notes ./RELEASE_NOTES.md
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|