We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1b1b6b commit c49b862Copy full SHA for c49b862
1 file changed
.github/workflows/build.yml
@@ -30,16 +30,15 @@ jobs:
30
git config --global user.email "github-actions@users.noreply.github.com"
31
git config --global user.name "GitHub Actions"
32
git clone https://x-access-token:${{ secrets.CDN_TOKEN }}@github.com/selauraclient/cdn.git cdn
33
+ rmdir /s /q cdn\windows
34
mkdir cdn\windows
- copy build\Release\*.exe cdn\windows\ >nul 2>&1
35
- copy build\Release\*.dll cdn\windows\ >nul 2>&1
+ copy /Y build\Release\*.exe cdn\windows\ >nul 2>&1
36
+ copy /Y build\Release\*.dll cdn\windows\ >nul 2>&1
37
cd cdn
- git add .
38
+ git add -A
39
git commit -m "Upload Windows release binaries from ${{ github.sha }}" || echo No changes to commit
40
git push
41
-
42
43
build-linux:
44
runs-on: ubuntu-latest
45
steps:
0 commit comments