Skip to content

Commit

Permalink
upload windows aux artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Qix- committed Apr 23, 2024
1 parent df0fc97 commit e598962
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,22 @@ jobs:
path: release/
if-no-files-found: error

- name: Prepare Windows Aux Binary Artifacts
if: runner.os == 'Windows'
shell: bash
run: |
rm -rf tauri-aux-artifacts
mkdir -p tauri-aux-artifacts
cp target/release/gitbutler-git-askpass.exe tauri-aux-artifacts/
- name: Upload Windows Aux Binary Artifacts
uses: actions/upload-artifact@v4
if: runner.os == 'Windows'
with:
name: "${{ env.channel }}-windows-aux-${{ github.run_number }}"
path: tauri-aux-artifacts/
if-no-files-found: error

sign-tauri:
needs: build-tauri
runs-on: [self-hosted, evcodesignd]
Expand Down

0 comments on commit e598962

Please sign in to comment.