Release Sherlock Platform prebuilt #1
Workflow file for this run
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: Release Sherlock Platform prebuilt | |
on: | |
release: | |
types: [created, edited, published, prereleased, released] | |
workflow_dispatch: | |
jobs: | |
build-platform: | |
uses: ./.github/workflows/build.yml | |
release: | |
needs: build-platform | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Download Artifacts from Build Workflow | |
uses: actions/download-artifact@v4 | |
with: | |
path: sherlock-platform-artifacts | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
out/sherlock-platform/artifacts/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |