diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml new file mode 100644 index 0000000..52bef69 --- /dev/null +++ b/.github/workflows/release-build.yml @@ -0,0 +1,21 @@ +# See LICENSE file in this repo for license details. + +name: Release Build + +on: + push: + tags: + # Match any semver tag, rely on the imported workflow to apply necessary + # logic to separate "stable" release builds from "prerelease" builds. + - "v[0-9]+.[0-9]+.*" + +jobs: + release_build: + name: Generate release build + + # https://docs.github.com/en/actions/security-guides/automatic-token-authentication + permissions: + contents: write + discussions: write + + uses: atc0005/shared-project-resources/.github/workflows/release-build.yml@master