jb-preston-jennings is creating a vinyl maui build. #3
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: Vinyl Maui Build | |
run-name: ${{ github.actor }} is creating a vinyl maui build. | |
on: | |
push: | |
branches: jbrelease/* | |
jobs: | |
vinyl-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: global.json | |
#- name: Build AspNetCore | |
# run: ./pack.sh | |
- name: Build AspNetCore | |
shell: pwsh | |
run: ./pack.ps1 | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vinyl-maui-aspnetcore | |
path: | | |
"artifacts/packages/Release/*.nupkg" | |
# Upload to github packages. |