Skip to content

Commit

Permalink
Merge pull request #104 from shigobu/自動ビルドワークフローを更新
Browse files Browse the repository at this point in the history
Update build.yml
  • Loading branch information
shigobu authored Mar 17, 2024
2 parents 202436e + de9b6a0 commit c4e932e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
bitLength: 64

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
run: devenv.com ${{env.SOLUTION_FILE_PATH}} /project ${{matrix.installerProjectPath}} /build "${{env.BUILD_CONFIGURATION}}|${{matrix.platform}}"

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.artifactName}}${{matrix.bitLength}}
path: ${{matrix.installerOutDir}}
Expand All @@ -89,7 +89,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Download and extract artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: artifacts/

Expand All @@ -104,7 +104,7 @@ jobs:
Compress-Archive -Path artifacts/${{env.artifactName}}64 -DestinationPath release/${{env.artifactName}}64.zip
- name: Upload to Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
draft: true
Expand Down

0 comments on commit c4e932e

Please sign in to comment.