Add GitHub Action to create upstream tag
This action can be triggered manually from the GitHub Actions tab.
This commit is contained in:
parent
ce0e79b115
commit
4c791c3f19
1 changed files with 17 additions and 0 deletions
17
.github/workflows/create-tag.yml
vendored
Normal file
17
.github/workflows/create-tag.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# This action creates a tag and pushes it
|
||||
name: "Create and push release tag"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
tag-and-push:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Upstream tag
|
||||
uses: osbuild/release-action@create-tag
|
||||
with:
|
||||
token: "${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }}"
|
||||
username: "imagebuilder-bot"
|
||||
email: "imagebuilder-bots+imagebuilder-bot@redhat.com"
|
||||
Loading…
Add table
Add a link
Reference in a new issue