Skip to content

Merge pull request #55 from takano32/fix-github-actions-for-update-bu… #20

Merge pull request #55 from takano32/fix-github-actions-for-update-bu…

Merge pull request #55 from takano32/fix-github-actions-for-update-bu… #20

Workflow file for this run

name: MSBuild
on: push
jobs:
build:
runs-on: windows-2022
env:
DOTNET_NOLOGO: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add msbuild to PATH
uses: microsoft/[email protected]
with:
msbuild-architecture: x64
- name: Install unzip
run: choco install -y zip
- name: Test
run: make test
- name: Publish
run: .\build-all.cmd
- name: Upload PsxPackagerGUI Artifact
uses: actions/upload-artifact@v3
with:
name: PsxPackagerGUI
path: build\PsxPackagerGUI\**
- name: Upload win-x64 Artifact
uses: actions/upload-artifact@v3
with:
name: psxpackager-win-x64
path: build\psxpackager-win-x64\**