Some checks failed
Lint / govulncheck (push) Failing after 10m42s
Lint / golangci-lint (push) Failing after 10m45s
Lint / Lint markdown (push) Failing after 14m10s
Tests / Code Coverage / test-unit (push) Failing after 18m3s
Tests / Code Coverage / test-integration (push) Failing after 21m5s
Tests / Code Coverage / test-e2e (push) Failing after 24m32s
Part of https://plan.wireit.in/deepstack/browse/VUL-267/ - Upgrade dependencies as required by zenithd: - `cosmos/cosmos-sdk`: `v0.50.4` -> `v0.53.4` - `cometbft/cometbft`: `v0.38.5` -> `v0.38.19` - Update CI workflows for this Gitea fork Reviewed-on: #1 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
39 lines
1014 B
YAML
39 lines
1014 B
YAML
name: Release
|
|
|
|
# Disabled for the gitea fork - needs a GITHUB_TOKEN
|
|
# 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]+.*" # Push events to matching v0.*, v1.*, etc., i.e. v1.0, v2.15.10, v1.2.3-beta.0
|
|
|
|
# Only manual trigger
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
release:
|
|
permissions:
|
|
contents: write # for goreleaser/goreleaser-action to create a GitHub release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 1.23.2
|
|
- name: Unshallow
|
|
run: git fetch --prune --unshallow
|
|
- name: Create release
|
|
uses: goreleaser/goreleaser-action@v5
|
|
with:
|
|
args: release --clean
|
|
version: "~> v1"
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|