Generate binaries for 3b92c5a07647fb8cdb29b2938c023824f4a08452 #9
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 | |
run-name: "Generate binaries for ${{ inputs.commit }}" | |
on: | |
workflow_dispatch: | |
inputs: | |
commit: | |
description: "Commit id to generate binaries for" | |
required: true | |
jobs: | |
linux-x64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ inputs.commit }} | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: global.json | |
- name: Publish | |
working-directory: Rudim | |
run: dotnet publish -c Release -p:PublishProfile=FolderProfile | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: linux-x64 | |
path: Rudim/bin/Release/net9.0/publish/ | |