github/workflows: introduce release action
Using staging branch for now, due to the new release_artifacts.
This commit is contained in:
parent
c45b5e978f
commit
cdff269270
1 changed files with 16 additions and 0 deletions
16
.github/workflows/release.yml
vendored
Normal file
16
.github/workflows/release.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
name: "Create GitHub release"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "v*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Upstream release
|
||||||
|
uses: osbuild/release-action@staging
|
||||||
|
with:
|
||||||
|
token: "${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }}"
|
||||||
|
slack_webhook_url: "${{ secrets.SLACK_WEBHOOK_URL }}"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue