tag-patches: do not allow concurrent jobs #96
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: Tag new patch releases on branch push | |
on: | |
push: | |
branches: [ stable ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Tag new patch release | |
runs-on: ubuntu-latest | |
if: "github.event_name == 'workflow_dispatch' || startsWith(github.event.head_commit.message, 'New translations') || startsWith(github.event.head_commit.message, 'New Crowdin updates') " | |
concurrency: tag-patches | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Tag new version | |
run: | | |
BASE_VERSION="2.19" | |
PATCH_VERSION_OFFSET=88 | |
PATCH_VERSION=$(($GITHUB_RUN_NUMBER-$PATCH_VERSION_OFFSET)) | |
FULL_VERSION="$BASE_VERSION.$PATCH_VERSION" | |
echo "Tagging version $FULL_VERSION" | |
git config user.name github-actions | |
git config user.email [email protected] | |
git tag "$FULL_VERSION" | |
- name: Push changes | |
run: git push origin --tags |