From 2b10c02d99a5d637da3ad22495e401a1dea01cad Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Sun, 5 May 2024 15:05:14 -0700 Subject: [PATCH] Publish releases on GitHub. --- .github/workflows/publish-github-release.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/publish-github-release.yaml diff --git a/.github/workflows/publish-github-release.yaml b/.github/workflows/publish-github-release.yaml new file mode 100644 index 0000000..d6df887 --- /dev/null +++ b/.github/workflows/publish-github-release.yaml @@ -0,0 +1,13 @@ +name: Publish GitHub release + +on: + push: + tags: + - v* + +jobs: + Publish: + permissions: + contents: write + if: startsWith(github.ref, 'refs/tags/v') + uses: cubing/actions-workflows/.github/workflows/publish-github-release.yaml@main