Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

setup-msbuild と upload-artifact のバージョンを上げる #49

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- uses: microsoft/setup-msbuild@v1.1
- uses: microsoft/setup-msbuild@v2
- run: python3 sdl_sample/${{ matrix.name }}/run.py
- run: python3 sumomo/${{ matrix.name }}/run.py
- run: python3 messaging_recvonly_sample/${{ matrix.name }}/run.py
Expand All @@ -30,7 +30,7 @@ jobs:
cp _build\${{ matrix.name }}\release\sumomo\Release\sumomo.exe ${{ matrix.name }}
cp _build\${{ matrix.name }}\release\messaging_recvonly_sample\Release\messaging_recvonly_sample.exe ${{ matrix.name }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ${{ matrix.name }}
Expand All @@ -54,7 +54,7 @@ jobs:
cp _build/${{ matrix.name }}/release/sumomo/sumomo ${{ matrix.name }}
cp _build/${{ matrix.name }}/release/messaging_recvonly_sample/messaging_recvonly_sample ${{ matrix.name }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ${{ matrix.name }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
cp _build/${{ matrix.name }}/release/sumomo/sumomo ${{ matrix.name }}
cp _build/${{ matrix.name }}/release/messaging_recvonly_sample/messaging_recvonly_sample ${{ matrix.name }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ${{ matrix.name }}
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
cp _build/${{ matrix.name }}/release/sumomo/sumomo ${{ matrix.name }}
cp _build/${{ matrix.name }}/release/messaging_recvonly_sample/messaging_recvonly_sample ${{ matrix.name }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ${{ matrix.name }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
- [UPDATE] VERSION のライブラリをアップデートする
- SORA_CPP_SDK_VERSION を 2024.3.1 にあげる
- @enm10k
- [UPDATE] Github Actions の setup-msbuild と upload-artifact のバージョンをアップデート
- Node.js 16 の Deprecated に伴う対応
- setup-msbuild を 1.1 から 2 にアップデート
- upload-artifact を 3 から 4 にアップデート

## sora-cpp-sdk-2024.2.0

Expand Down