-
Notifications
You must be signed in to change notification settings - Fork 558
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: release v0.25.0
- Loading branch information
Showing
399 changed files
with
25,549 additions
and
7,533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Release cosmoverse | ||
|
||
on: | ||
push: | ||
branches: | ||
- cosmoverse | ||
|
||
jobs: | ||
consecutiveness: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: mktcode/consecutive-workflow-action@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
release-cosmoverse: | ||
runs-on: ubuntu-latest | ||
needs: [ consecutiveness ] | ||
env: | ||
working-directory: go/src/github.com/ignite/cli | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Delete the cosmoverse release | ||
uses: dev-drprasad/[email protected] | ||
with: | ||
tag_name: v0.0.0-cosmoverse | ||
delete_release: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Bump version and push tag | ||
uses: mathieudutour/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
custom_tag: v0.0.0-cosmoverse | ||
tag_prefix: "" | ||
|
||
- name: Upsert the cosmoverse release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: v0.0.0-cosmoverse | ||
name: cosmoverse | ||
body: "Install and move the CLI to your bin directory: `curl https://get.ignite.com/[email protected]! | bash`" | ||
prerelease: true | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.18 | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
path: ${{ env.working-directory }} | ||
fetch-depth: 0 | ||
|
||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v2 | ||
with: | ||
workdir: ${{ env.working-directory }} | ||
args: release --rm-dist --skip-validate -f .goreleaser.cosmoverse.yml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- develop | ||
- chore/fix-nightly-builds | ||
|
||
jobs: | ||
consecutiveness: | ||
|
@@ -25,41 +26,43 @@ jobs: | |
- name: Delete the nightly release | ||
uses: dev-drprasad/[email protected] | ||
with: | ||
tag_name: v0.0.0-nightly | ||
tag_name: nightly | ||
delete_release: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Bump version and push tag | ||
- name: Push new nightly tag | ||
uses: mathieudutour/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
custom_tag: v0.0.0-nightly | ||
custom_tag: nightly | ||
tag_prefix: "" | ||
|
||
- name: Upsert the nightly release | ||
- name: Create the new nightly release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: v0.0.0-nightly | ||
tag: nightly | ||
name: nightly | ||
body: "Install and move the CLI to your bin directory: `curl https://get.ignite.com/cli@v0.0.0-nightly! | bash`" | ||
body: "Install and move the CLI to your bin directory: `curl https://get.ignite.com/cli@nightly! | bash`" | ||
prerelease: true | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.18 | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
path: ${{ env.working-directory }} | ||
fetch-depth: 0 | ||
|
||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v2 | ||
releases-binaries: | ||
name: Release Go Binary | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
goos: [linux, darwin] | ||
goarch: [amd64, arm64] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: wangyoucao577/[email protected] | ||
with: | ||
workdir: ${{ env.working-directory }} | ||
args: release --rm-dist --skip-validate -f .goreleaser.nightly.yml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
project_path: "./ignite/cmd/ignite" | ||
binary_name: "ignite" | ||
asset_name: ignite-nightly-${{ matrix.goos }}-${{ matrix.goarch }} | ||
release_name: "nightly" | ||
goos: ${{ matrix.goos }} | ||
goarch: ${{ matrix.goarch }} | ||
ldflags: -s -w -X github.com/ignite/cli/ignite/version.Version=nightly | ||
goversion: "1.19" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ changelog: | |
skip: true | ||
release: | ||
prerelease: true | ||
name_template: nightly | ||
name_template: cosmoverse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.