mach/gpu-dawn/.github/workflows/draft_release.yml
Stephen Gutekanst b93dc4a207 gpu-dawn: authenticate the GH CLI
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2022-02-12 15:21:16 -07:00

13 lines
327 B
YAML

name: Draft release
on:
push:
branches:
- 'main'
jobs:
draft:
runs-on: ubuntu-latest
steps:
- name: Create draft
run: gh release create $(git rev-parse --short HEAD) --title "Automatic release of main @ $(git rev-parse --short HEAD)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}