Skip to content

ci: fix semver autotag (#13) #2

ci: fix semver autotag (#13)

ci: fix semver autotag (#13) #2

Workflow file for this run

name: Semver
on:
push:
branches:
- master
jobs:
set_tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run version bump script
run: |
VERSION=$(./scripts/semver.sh)
echo "Project version: $VERSION"
git config --global user.name "Gornak40[bot]"
git config --global user.email "noreply@algolymp.ru"
MESSAGE=$(git log -1 --pretty=%B)
git tag -a $VERSION -m $MESSAGE
git push origin --tags