diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-03-02 23:58:08 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-03-02 23:58:08 +0100 |
commit | c800dd31355064be8d3de8a74326b1c2b974c78e (patch) | |
tree | c22d9c1a83fafe009f16483bc88a96bbdd49dba0 /.github | |
parent | c60b7b606dd0b4bc7108f9a768a4545f0781730c (diff) | |
parent | 441b81ef0f46062713f618a57e0d297c8a7a70d3 (diff) | |
download | FlightCore-feat/basic-log-parsing.tar.gz FlightCore-feat/basic-log-parsing.zip |
Merge branch 'main' into feat/basic-log-parsingfeat/basic-log-parsing
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/push-test.yml | 13 | ||||
-rw-r--r-- | .github/workflows/release.yml | 1 |
2 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index aaad5a6d..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 @@ -109,9 +109,16 @@ 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/* + 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: |