Version Bump to Build for Gotify 2.5.0 #2
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 Pipeline | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build All Versions | |
run: make build | |
- name: Determine Version Number | |
id: version | |
run: | | |
YEAR=$(date +%Y) | |
LAST_VERSION_TAG=$(git tag -l --sort=-creatordate|grep -v 'pre'|head -n 1) | |
LAST_MAJOR=$(echo $LAST_VERSION_TAG|sed -E 's/^[^\.]+\.//g;s/\..+//g') | |
MAJOR=$(($LAST_MAJOR+1)) | |
MINOR=$(git log --oneline HEAD...$LAST_VERSION_TAG|wc -l) | |
echo "TAG_NAME=$YEAR.$MAJOR.$MINOR" >> $GITHUB_OUTPUT | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ steps.version.outputs.TAG_NAME }} | |
name: Release - ${{ steps.version.outputs.TAG_NAME }} | |
body_path: MAJOR_CHANGELOG.md | |
make_latest: true | |
token: ${{ secrets.GIT_TOKEN }} | |
files: | | |
build/cekwebhooks-linux-amd64.so | |
build/cekwebhooks-linux-arm-7.so | |
build/cekwebhooks-linux-arm64.so |