Skip to content

Commit

Permalink
Switch to Main / Pull New Tag for Versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
lewg committed Apr 8, 2021
1 parent 42409d2 commit 5f0afba
Showing 1 changed file with 43 additions and 41 deletions.
84 changes: 43 additions & 41 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5f0afba

Please sign in to comment.