Generate binaries for ec7bec819a5b2f70ec9fb4aeabb2f8c8968b0990 #10
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/ | |