From e82777301c21e074c4e8d8ac44b6df510e4a9fce Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Sat, 25 Feb 2023 21:33:27 +0100 Subject: build: Separate zips for artifacts for Windows and Linux (#187) * build: Separate zips for artifacts for Windows and Linux * fix: Ensure separate folders --- .github/workflows/push-test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index aaad5a6d..95e22b13 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -109,9 +109,15 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - - name: upload build artifact + - name: Upload Linux artifact uses: actions/upload-artifact@v2 with: + name: linux-artifacts path: | src-tauri/target/release/bundle/appimage/* + - name: Upload Windows artifact + uses: actions/upload-artifact@v2 + with: + name: windows-artifacts + path: | src-tauri/target/release/bundle/msi/* -- cgit v1.2.3 From 339073a89c49c789bb572bb6635f817d02822afe Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Sun, 26 Feb 2023 21:28:18 +0100 Subject: build: Upload Windows `.pdb` (#192) * build: Upload pdb as well * build: Upload Windows pdb on release build --- .github/workflows/push-test.yml | 1 + .github/workflows/release.yml | 1 + 2 files changed, 2 insertions(+) (limited to '.github') diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 95e22b13..2491a656 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -121,3 +121,4 @@ jobs: name: windows-artifacts path: | src-tauri/target/release/bundle/msi/* + src-tauri/target/release/app.pdb diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6279d126..a97647fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,6 +60,7 @@ jobs: path: | src-tauri/target/release/bundle/appimage/*AppImage* src-tauri/target/release/bundle/msi/*msi* + src-tauri/target/release/app.pdb - name: Release uses: softprops/action-gh-release@v1 with: -- cgit v1.2.3 From 55f7181553019d5ccb3fc9b26b0216e283921d3e Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Thu, 2 Mar 2023 22:30:59 +0100 Subject: chore: Bump checkout action to v3 (#196) --- .github/workflows/push-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 2491a656..72fd98bb 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -19,7 +19,7 @@ jobs: name: format-check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -35,7 +35,7 @@ jobs: autogen-ts-bindings-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal -- cgit v1.2.3