-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrew Anguiano
committed
Sep 10, 2024
1 parent
c96c11c
commit 28e4301
Showing
2 changed files
with
31 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflow runs when a tag is created with the `v` prefix. | ||
# It runs our validation script, outputs the artifact, creates a Github | ||
# release, and uploads and associates the artifact with the release. | ||
|
||
name: Release tag created | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | ||
with: | ||
ref: ${{ github.ref }} | ||
- name: Setup workspace | ||
uses: "./.github/actions/bootstrap" | ||
- name: Validate PR Artifact | ||
uses: "./.github/actions/build-validate-artifact" | ||
with: | ||
command-args: '--output-artifact' | ||
- name: Debugging output | ||
run: ls -la utils/build | ||
- name: Create release | ||
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 | ||
with: | ||
files: utils/build/* | ||
fail_on_unmatched_files: true | ||
make_latest: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters