Skip to content

Commit

Permalink
Merge pull request #5014 from cfromknecht/v0.12.1-beta.rc3-branch-com…
Browse files Browse the repository at this point in the history
…mits

v0.12.1-beta.rc3
  • Loading branch information
cfromknecht authored Feb 12, 2021
2 parents ea2b015 + 4ca83c3 commit de8dbe2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
go-version: '${{ env.GO_VERSION }}'

- name: run check
run: make rpc-check
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
go-version: '${{ env.GO_VERSION }}'

- name: fetch and rebase on master
run: |
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
go-version: '${{ env.GO_VERSION }}'

- name: lint
run: make lint
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
go-version: '${{ env.GO_VERSION }}'

- name: build release for all architectures
run: make release
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
go-version: '${{ env.GO_VERSION }}'

- name: check all command line flags exist in sample-lnd.conf file
run: make sample-conf-check
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
go-version: '${{ env.GO_VERSION }}'

- name: install bitcoind
run: ./scripts/install_bitcoind.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
go-version: '${{ env.GO_VERSION }}'

- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion build/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const (

// AppPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec.
AppPreRelease = "beta.rc2"
AppPreRelease = "beta.rc3"
)

func init() {
Expand Down

0 comments on commit de8dbe2

Please sign in to comment.