From 05403fe914d43f7e4fdd515d6b18cc536f4d1dfc Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Tue, 22 Oct 2024 17:43:11 +0200 Subject: [PATCH] Add an action to release the gem --- .github/workflows/release.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 00000000..de4a84ed --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,17 @@ +--- +name: Release + +on: + push: + # Pattern matched against refs/tags + tags: + - 'v*' + +jobs: + release: + name: Release gem + uses: theforeman/actions/.github/workflows/release-gem.yml@v0 + with: + allowed_owner: theforeman + secrets: + api_key: ${{ secrets.RUBYGEM_API_KEY }}