When challenging on page, add a challenge URI parameter when POST'ing challenge response #39
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create release | |
on: | |
pull_request_target: | |
branches: | |
- main | |
types: | |
- closed | |
permissions: | |
contents: write | |
actions: write | |
jobs: | |
release: | |
if: github.event.pull_request.merged == true && !contains(github.event.pull_request.title, '[skip-release]') | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
- name: install autotag binary | |
run: curl -sL https://git.io/autotag-install | sudo sh -s -- -b /usr/bin | |
- name: create release | |
run: |- | |
TAG=$(autotag) | |
git push origin v$TAG | |
gh release create v$TAG --title "v$TAG" --generate-notes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |