From 4fdf75a40881bf001310cbf9eafc1021044aa3b6 Mon Sep 17 00:00:00 2001 From: Simon Steinbeiss Date: Thu, 24 Mar 2022 15:56:41 +0100 Subject: [PATCH] Add GitHub Action to create upstream tag This action can be triggered manually from the GitHub Actions tab. --- .github/workflows/create-tag.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/create-tag.yml diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml new file mode 100644 index 0000000..b5d0f19 --- /dev/null +++ b/.github/workflows/create-tag.yml @@ -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"