Skip to content

Commit

Permalink
Fix Windows path error round 2
Browse files Browse the repository at this point in the history
Differential Revision: D56528303
  • Loading branch information
Wei Zhang (Devinfra) authored and facebook-github-bot committed Apr 24, 2024
1 parent dc2977b commit 0caca53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_main.yml
Expand Up @@ -81,14 +81,14 @@ jobs:
- uses: actions/checkout@v4.1.1
- uses: "./.github/actions/setup-build-and-test-windows"
build-windows-artifacts:
if: github.event_name == 'schedule'
# if: github.event_name == 'schedule'
runs-on: windows-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: "./.github/actions/setup-build-and-test-windows"
- name: Copy package for github actions
run: mkdir artifacts && mv "build/Redex*.zip" "artifacts/"
shell: c:/tools/msys64/msys2_shell.cmd -defterm -no-start -mingw64 -full-path -here -c
run: mkdir artifacts && mv 'build/Redex*.zip' 'artifacts/'
shell: bash
- uses: actions/upload-artifact@v4.0.0
with:
path: ".\\artifacts"
Expand Down

0 comments on commit 0caca53

Please sign in to comment.