Compare commits

..

2 Commits

Author SHA1 Message Date
Kevin Hester
6c956591f8 disambig github action names 2021-04-16 15:31:53 +08:00
Kevin Hester
640cc82103 1.2.29 get ready for automated releases 2021-04-16 15:29:33 +08:00
4 changed files with 12 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ jobs:
# - name: Startup # - name: Startup
# run: echo "No action setup currently needed, skipping..." # run: echo "No action setup currently needed, skipping..."
build: ci-build:
# needs: setup # needs: setup
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

View File

@@ -12,7 +12,7 @@ on:
- "v*" - "v*"
jobs: jobs:
build: release-build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

9
bin/promote-release.sh Executable file
View File

@@ -0,0 +1,9 @@
echo "This script is only for developers who are publishing new builds on github. Most users don't need it"
VERSION=`bin/buildinfo.py`
# Must have a V prefix to trigger github
git tag "v${VERSION}"
git push root "v${VERSION}" # push the tag
echo "Tag ${VERSION} pushed to github, github actions should now be building the draft release. If it seems good, click to publish it"

View File

@@ -1,4 +1,4 @@
[VERSION] [VERSION]
major = 1 major = 1
minor = 2 minor = 2
build = 28 build = 29