16 lines
381 B
YAML
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 }}
|