diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2021-05-03 14:21:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-03 14:21:03 +0200 |
| commit | 939e29cdf960f9fa524ba296177f0e85c17e0934 (patch) | |
| tree | 1ecfb71ea4ee49a00465ac8703c40bb8cd50ed45 | |
| parent | 3793992bb0d33df99d3da3e756946834782536b1 (diff) | |
Update nightly.yml
| -rw-r--r-- | .github/workflows/nightly.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 1502e66..d0af7c0 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -36,7 +36,7 @@ jobs: mkdir dist copy ols.exe dist cd dist - ren ols.exe ols_windows.exe + ren ols.exe ols-x86_64-pc-windows-msvc.exe - name: Upload artifacts uses: actions/upload-artifact@v1 with: @@ -63,8 +63,10 @@ jobs: with: name: dist-x86_64-pc-windows-msvc path: dist - - run: ls -al ./dist - + - run: | + gzip ols-x86_64-pc-windows-msvc.exe + ls -al ./dist + - name: Publish Release uses: ./.github/actions/github-release with: |