Skip to content

Show XP in CLI success output (#188) #1

Show XP in CLI success output (#188)

Show XP in CLI success output (#188) #1

Workflow file for this run

name: Tag release
on:
push:
branches: [main]
paths: [version.txt]
workflow_dispatch:
permissions:
contents: write
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: |
VERSION="$(cat version.txt)"
git tag "$VERSION"
git push origin tag "$VERSION"