Skip to content

bump version and add tag automatically #2

bump version and add tag automatically

bump version and add tag automatically #2

Workflow file for this run

name: Version Bump
on:
push:
# branches:
# - main
# paths:
# - VERSION
jobs:
create-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Get version
id: vars
run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT
- uses: rickstaa/[email protected]
with:
tag: ${{ steps.vars.outputs.version }}