Release #7
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
name: Release | |
on: | |
workflow_dispatch: | |
jobs: | |
releaes: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: compute the upcoming version from the current latest version | |
run: | | |
# This fetches the current latest tag | |
cur_ver=$(git -c 'versionsort.suffix=-' ls-remote --exit-code --refs --sort='version:refname' --tags https://github.com/hidetatz/shiba.git 'shiba*.*.*' | tail --lines=1 | cut --delimiter='/' --fields=3) | |
echo "current version: $cur_ver" | |
# This increments the patch version | |
# https://stackoverflow.com/questions/6245293/extract-version-number-from-file-in-shell-script | |
next_ver="${cur_ver%.*}.$((${cur_ver##*.}+1))" | |
echo "next version: $next_ver" | |
echo "ver=$next_ver" >> $GITHUB_OUTPUT | |
id: version | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 'stable' | |
- name: build files | |
run: | | |
VERSION=${{ steps.version.outputs.ver }} make rel-build | |
tar -zcvf ${{ steps.version.outputs.ver }}.linux_amd64.tar.gz ./shiba | |
- uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ steps.version.outputs.ver }} | |
files: ${{ steps.version.outputs.ver }}.linux_amd64.tar.gz |