Skip to content

Release CLI v0.215.0 (#92) #41

Release CLI v0.215.0 (#92)

Release CLI v0.215.0 (#92) #41

Workflow file for this run

name: tag
on:
# Update tags on every push to main.
push:
branches:
- main
# To allow for manual testing.
workflow_dispatch:
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-tags: true
- name: Tag new versions
shell: bash
run: |
set -e
commits=$(git log --pretty=format:"%h" ./VERSION)
for commit in $commits; do
version=$(git show $commit:./VERSION)
if [ -n "$(git tag -l "v${version}")" ]; then
continue
fi
echo "Tagging $commit as v${version}"
git tag "v${version}" $commit
done
- name: Push new tags
shell: bash
run: git push --tags