非同期処理に置き換え #124
Workflow file for this run
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: "Build Apps (Development)" | |
on: | |
push: | |
branches: | |
- "develop" | |
- "release/*" | |
- "feature/*" | |
- "refactor/*" | |
tags: | |
- "!#*" | |
jobs: | |
app-build: | |
runs-on: windows-latest | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install SDK | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '7.0.*' | |
- name: CLI Build | |
run: dotnet msbuild /nologo /t:Archive /p:Configuration=Debug /p:PublishDir=${{ github.workspace }}/publish %ProjectFile% | |
shell: cmd | |
env: | |
ProjectFile: KeySwitchManager/Sources/Runtime/Applications/CLI/publish.msbuild | |
- name: WPF Build | |
run: dotnet msbuild /nologo /t:Archive /p:Configuration=Debug /p:PublishDir=${{ github.workspace }}/publish %ProjectFile% | |
shell: cmd | |
env: | |
ProjectFile: KeySwitchManager/Sources/Runtime/Applications/WPF/publish.msbuild | |
- name: Artifact CLI | |
uses: actions/upload-artifact@v2 | |
with: | |
name: KeySwitchManager.CLI-dev | |
path: ${{ github.workspace }}/publish/KeySwitchManager.CLI*/ | |
- name: Artifact WPF | |
uses: actions/upload-artifact@v2 | |
with: | |
name: KeySwitchManager.WPF-dev | |
path: ${{ github.workspace }}/publish/KeySwitchManager.WPF*/ |