Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ryukau committed Feb 13, 2024
1 parent 0458222 commit e4b8fc1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run script
run: ci/ci_ubuntu.sh
- name: Upload
# if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: plugins_ubuntu
path: plugins_ubuntu
Expand All @@ -27,14 +27,14 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run script
run: ci/ci_windows.ps1
- name: Upload
# if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: plugins_windows
path: plugins_windows
Expand All @@ -43,14 +43,14 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run script
run: ci/ci_macOS.sh
- name: Upload
# if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: plugins_macOS
path: plugins_macOS
2 changes: 1 addition & 1 deletion ci/ci_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Get-ChildItem -Path "$SRC_ROOT\build" -Filter "*_artefacts" |
ForEach-Object {
$PLUGIN_DIR = "$($_.FullName)\Release"
Get-ChildItem -Path $PLUGIN_DIR -Include @("*.lib", "*.exp") -Recurse | Remove-Item -Force
Move-Item -Path "$PLUGIN_DIR\*" -Destination $ARTIFACT_DIR -Force
Copy-Item -Path "$PLUGIN_DIR\*" -Destination $ARTIFACT_DIR -Force
}

tree /A /F $ARTIFACT_DIR # debug

0 comments on commit e4b8fc1

Please sign in to comment.