Let's try that again... #1
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
name: Publish Artifacts on Release | ||
on: | ||
push: | ||
branches: | ||
- main | ||
# : | ||
# tags: | ||
# - 'v*' | ||
permissions: | ||
contents: write | ||
jobs: | ||
release: | ||
Check failure on line 13 in .github/workflows/publish-release-artifacts.yaml GitHub Actions / Publish Artifacts on ReleaseInvalid workflow file
|
||
name: Create Release with Artifacts | ||
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 }} |