We need a privileged / admin user doing the post-release version bump as this is a direct commit to main (i.e. without a PR) so switch to using schutzbot with a scoped personal access token (only public_repo).
15 lines
273 B
YAML
15 lines
273 B
YAML
name: "Create GitHub release"
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Upstream release
|
|
uses: osbuild/release-action@main
|
|
with:
|
|
token: "${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }}"
|