From cdff269270ed5b962173e58de390e01d4d84ccc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Sch=C3=BCller?= Date: Fri, 20 Dec 2024 08:39:39 +0100 Subject: [PATCH] github/workflows: introduce release action Using staging branch for now, due to the new release_artifacts. --- .github/workflows/release.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..46aa75f --- /dev/null +++ b/.github/workflows/release.yml @@ -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 }}"