Skip to content

Release Sherlock Platform prebuilt #7

Release Sherlock Platform prebuilt

Release Sherlock Platform prebuilt #7

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@v3
with:
path: sherlock-platform-artifacts
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
sherlock-platform-linux
sherlock-platform-mac
sherlock-platform-win
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}