Skip to content

Allow customization of the WWW-Authenticate headers (#1151) #87

Allow customization of the WWW-Authenticate headers (#1151)

Allow customization of the WWW-Authenticate headers (#1151) #87

Workflow file for this run

name: CreateRelease
on:
push:
tags:
- v*
permissions:
contents: read
jobs:
build:
name: Draft release action
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Create release
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
github.rest.repos.createRelease({
owner: "${{ github.repository_owner }}",
repo: "lowkey-vault",
tag_name: "${{ github.ref_name }}",
generate_release_notes: true,
draft: true
});