Skip to content

Release Sherlock Platform prebuilt #1

Release Sherlock Platform prebuilt

Release Sherlock Platform prebuilt #1

Workflow file for this run

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 }}