Merge pull request #418 from VPKSoft/dependabot/nuget/multi-87f034d745 #350
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 MacOS bundle | |
on: | |
push: | |
branches: [ "master" ] | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore "$GITHUB_WORKSPACE/amp multiplatform.sln" | |
- name: Dotnet publish | |
run: | | |
cd "$GITHUB_WORKSPACE/Packaging/MacOS/" | |
./make_app.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: amp# application bundle | |
path: ${{ github.workspace }}/Packaging/amp#.zip |