Skip to content

Commit

Permalink
chore(ci): move vc_redist.x64.exe out
Browse files Browse the repository at this point in the history
  • Loading branch information
Candinya committed Apr 21, 2024
1 parent 1bf3f5f commit 1bd6198
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ jobs:
name: ${{ env.ARCHIVE_NAME }}-Installer.exe
path: ${{ env.ARCHIVE_NAME }}-Installer.exe

- name: Move VC Redist installer out (let release action find it)
if: startsWith(github.event.ref, 'refs/tags/')
shell: pwsh
run: |
Move-Item workspace\vc_redist.x64.exe .\
- name: Create release (draft)
if: startsWith(github.event.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
Expand All @@ -128,6 +134,6 @@ jobs:
files: |
${{ env.ARCHIVE_NAME }}.zip
${{ env.ARCHIVE_NAME }}-Installer.exe
workspace\vc_redist.x64.exe
vc_redist.x64.exe
env:
GITHUB_TOKEN: ${{ secrets.CI_TOKEN }}

0 comments on commit 1bd6198

Please sign in to comment.