Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Merge pull request #20 from psyGamer/file-reloading #16

Merge pull request #20 from psyGamer/file-reloading

Merge pull request #20 from psyGamer/file-reloading #16

Workflow file for this run

name: Publish Linux
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0'
- name: Install dependencies
run: dotnet restore
- name: Publish
run: dotnet publish -r linux-x64 --self-contained=false /p:PublishSingleFile=true --output ./publish-linux-x64
- name: Upload
uses: actions/upload-artifact@v2
with:
name: AvaloniaTAS-linux-x64
path: publish-linux-x64/**/*