Skip to content

Commit

Permalink
Start on release action
Browse files Browse the repository at this point in the history
  • Loading branch information
multiplemonomials committed May 17, 2024
1 parent 8e980b4 commit beeecb3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish-release-artifacts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish Artifacts on Release
on:
push:
tags:
- 'v*'
permissions:
contents: write

jobs:
release:
name: Publish Artifacts to Release
needs: build_cores
runs-on: ubuntu-latest
steps:
- name: Show GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"

- name: Download All Compiled Core Artifacts
uses: dawidd6/action-download-artifact@v3
with:
commit: ${{ env.GITHUB_SHA }}

0 comments on commit beeecb3

Please sign in to comment.