Skip to content

Update pass/fail UI (#118) #61

Update pass/fail UI (#118)

Update pass/fail UI (#118) #61

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"