Skip to content

Simplify csrf-token handling in tests #17

Simplify csrf-token handling in tests

Simplify csrf-token handling in tests #17

Workflow file for this run

name: Deploy Release
on:
push:
tags:
- "*"
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Publish GitHub Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG: ${{ github.ref_name }}
run: |
gh release create "$TAG" \
--repo="$GITHUB_REPOSITORY" \
--title="${TAG}" \
--generate-notes