Skip to content

Commit 4da32de

Browse files
authored
ci: Update umee branch goreleaser (#48)
* Update umee branch goreleaser * Update workflows
1 parent b971cf8 commit 4da32de

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- main
7+
- umee
88
- release/**
99

1010
# This workflow makes amd64 and arm64 binaries for macOS and Linux.

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
pull_request:
55
paths: ["**.go"]
66
branches:
7-
- main
7+
- umee
88
- release/**
99
push:
1010
branches:
11-
- main
11+
- umee
1212
- release/**
1313
paths: ["**.go"]
1414

.github/workflows/linkchecker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
paths: ["**.md"]
55
push:
66
branches:
7-
- main
7+
- umee
88
- release/**
99
paths: ["**.md"]
1010

@@ -16,5 +16,5 @@ jobs:
1616
- uses: gaurav-nelson/github-action-markdown-link-check@v1
1717
with:
1818
check-modified-files-only: "yes"
19-
base-branch: main
19+
base-branch: umee
2020
config-file: ".github/workflows/linkchecker.config.json"

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
pull_request:
44
push:
55
branches:
6-
- main
6+
- umee
77
- release/**
88

99
jobs:
@@ -28,7 +28,7 @@ jobs:
2828
config: .revive.toml
2929
exclude: "*.pb.go;*.pb.gw.go;*.pulsar.go;swagger/..."
3030
path: "./..."
31-
- name: golangci-lint main
31+
- name: golangci-lint umee
3232
uses: golangci/golangci-lint-action@v3
3333
if: env.GIT_DIFF
3434
with:

.github/workflows/price-feeder-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# This workflow helps with creating docker images.
2-
# This job will only be triggered when a tag (vX.X.x) is pushed
2+
# This job will only be triggered when a tag (umee/vX.X.x) is pushed
33
name: Release price-feeder
44

55
on:
66
push:
77
tags:
8-
- "v*.*.*"
8+
- "umee/v*.*.*"
99

1010
jobs:
1111
goreleaser:
@@ -19,7 +19,7 @@ jobs:
1919
go-version: 1.19
2020
cache: true
2121
cache-dependency-path: go.sum
22-
# Parse 'v*.*.*' semantic version from 'v*.*.*' and save to
22+
# Parse 'umee/v*.*.*' semantic version from 'umee/v*.*.*' and save to
2323
# the $GITHUB_ENV environment variable.
2424
- name: Set env
2525
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
pull_request:
44
push:
55
branches:
6-
- main
6+
- umee
77
- release/**
88

99
jobs:

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ builds:
1717
- -tags=badgerdb ledger netgo
1818
- -trimpath
1919
ldflags:
20-
- -s -w -X main.commit={{.Commit}} -X main.date={{ .CommitDate }} -X github.com/cosmos/cosmos-sdk/version.AppName=price-feeder -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }}
20+
- -s -w -X umee.commit={{.Commit}} -X umee.date={{ .CommitDate }} -X github.com/cosmos/cosmos-sdk/version.AppName=price-feeder -X github.com/cosmos/cosmos-sdk/version.Version={{ .Version }} -X github.com/cosmos/cosmos-sdk/version.Commit={{ .Commit }}
2121
goos:
2222
- linux
2323
goarch:

.mergify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pull_request_rules:
77
- name: Automatic merge on approval
88
conditions:
99
- "#approved-reviews-by>=1"
10-
- base=main
10+
- base=umee
1111
- label=A:Automerge
1212
actions:
1313
queue:

0 commit comments

Comments
 (0)