Skip to content

new version #11

new version

new version #11

Workflow file for this run

name: Tag Releases
on:
push:
branches:
- 'main'
paths:
- 'version.txt'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
VERSION="$(cat version.txt)"
git tag "$VERSION"
git push origin tag "$VERSION"