-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to Main / Pull New Tag for Versioning
- Loading branch information
Showing
1 changed file
with
43 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,48 +2,50 @@ name: Tag, Release and Upload | |
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
jobs: | ||
Release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
- name: Bump version and push tag | ||
id: tag_release | ||
uses: anothrNick/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DEFAULT_BUMP: patch | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ steps.tag_release.outputs.tag }} | ||
release_name: Release ${{ steps.tag_release.outputs.tag }} | ||
body: GitHub Actions Release | ||
draft: false | ||
prerelease: false | ||
- name: Set up Go 1.14 | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: 1.16 | ||
id: go | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
- name: Deps & Build | ||
shell: bash | ||
run: | | ||
export PATH=${PATH}:`go env GOPATH`/bin | ||
make build-deps | ||
make build | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v1-release | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: buildenv-* | ||
tag: ${{ steps.tag_release.outputs.tag }} | ||
overwrite: true | ||
file_glob: true | ||
- uses: actions/checkout@v2 | ||
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
- name: Bump version and push tag | ||
id: tag_release | ||
uses: anothrNick/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DEFAULT_BUMP: patch | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ steps.tag_release.outputs.tag }} | ||
release_name: Release ${{ steps.tag_release.outputs.tag }} | ||
body: GitHub Actions Release | ||
draft: false | ||
prerelease: false | ||
- name: Set up Go 1.16 | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: 1.16 | ||
id: go | ||
- name: Check out new tag into the Go module directory | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ steps.tag_release.outputs.tag }} | ||
- name: Deps & Build | ||
shell: bash | ||
run: | | ||
export PATH=${PATH}:`go env GOPATH`/bin | ||
make build-deps | ||
make build | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v1-release | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: buildenv-* | ||
tag: ${{ steps.tag_release.outputs.tag }} | ||
overwrite: true | ||
file_glob: true |