Merge pull request #419 from VPKSoft/dependabot/nuget/MSTest.TestAdap… #343
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: .NET Core Linux AppImage | |
on: | |
push: | |
branches: [ "master" ] | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install LibFuse2 | |
run: | | |
sudo add-apt-repository universe | |
sudo apt install libfuse2 | |
- name: Dotnet publish | |
run: | | |
cd "$GITHUB_WORKSPACE/Packaging/Linux/AppImage" | |
./release.sh | |
- name: Upload AppImage | |
uses: actions/upload-artifact@v3 | |
with: | |
name: amp# AppImage image | |
path: ${{ github.workspace }}/Packaging/Linux/AppImage/amp#-x86_64.AppImage |