From beeecb3bdd4b56a69fecc6fa670611a7553e3425 Mon Sep 17 00:00:00 2001 From: Jamie Smith Date: Thu, 16 May 2024 22:02:05 -0700 Subject: [PATCH] Start on release action --- .../workflows/publish-release-artifacts.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/publish-release-artifacts.yaml diff --git a/.github/workflows/publish-release-artifacts.yaml b/.github/workflows/publish-release-artifacts.yaml new file mode 100644 index 000000000..f8fa08842 --- /dev/null +++ b/.github/workflows/publish-release-artifacts.yaml @@ -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 }} \ No newline at end of file