Skip to content

Commit

Permalink
Merge pull request #209 from atc0005/add-initial-release-build-workflow
Browse files Browse the repository at this point in the history
Add initial automated release build workflow
  • Loading branch information
atc0005 authored Jul 20, 2023
2 parents a1852a3 + 4210f28 commit b37e2ef
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b37e2ef

Please sign in to comment.