Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed May 19, 2023
1 parent 1783e70 commit 8a4a11f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build_casprocessor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,24 @@ jobs:
git clone -b master https://github.com/tsukumijima/TvCas.git
cd TvCas/
msbuild TvCas.sln /t:Build /p:Configuration=Release /p:Platform=x64 /p:PlatformToolset=v142
cp -Path x64/Release/B1.tvcas -Destination ../
cp -Path x64/Release/B25.tvcas -Destination ../
# CasProcessor のビルド
- name: Build CasProcessor
run: |
git clone -b master https://github.com/tsukumijima/CasProcessor.git
cd CasProcessor/
msbuild CasProcessor.sln /t:Build /p:Configuration=Release /p:Platform=x64 /p:PlatformToolset=v142
mkdir ../Plugins
cp -Path x64/Release/CasProcessor.tvtp -Destination ../Plugins
# Artifact としてアップロード
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: CasProcessor-and-TvCas.zip
path: |
TvCas/x64/Release/B1.tvcas
TvCas/x64/Release/B25.tvcas
CasProcessor/x64/Release/CasProcessor.tvtp
B1.tvcas
B25.tvcas
Plugins/CasProcessor.tvtp

0 comments on commit 8a4a11f

Please sign in to comment.