mach/gpu-dawn/.github/workflows/publish_release.yml
Stephen Gutekanst c370e007fd gpu-dawn: checkout repo so we can use git rev-parse
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2022-02-12 15:21:16 -07:00

16 lines
381 B
YAML

name: Publish release
on:
workflow_run:
workflows: ["CI", "CI M1"]
types:
- completed
jobs:
draft:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Publish release
run: echo "TODO(build-system): gh CLI has no way to mark draft as published?"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}