diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-08-27 21:26:58 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-08-27 21:26:58 +0200 |
commit | 37aa4a0cdfd3cdffa7df9cc270af3ec4146d7bc3 (patch) | |
tree | 1462d445b5ccb3e3710a36158d98b2e76b16be3e /.github/workflows | |
parent | 2f2504dd4d899a86e68776ea6a5df96cd51964ba (diff) | |
download | FlightCore-37aa4a0cdfd3cdffa7df9cc270af3ec4146d7bc3.tar.gz FlightCore-37aa4a0cdfd3cdffa7df9cc270af3ec4146d7bc3.zip |
Publish release file as artifact
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/push-test.yml | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 91ac6af2..0fdb054e 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -53,16 +53,25 @@ jobs: uses: actions/upload-artifact@v2 with: path: | - src-tauri/target/release/bundle/appimage/*.AppImage - src-tauri/target/release/bundle/deb/*.deb - src-tauri/target/release/bundle/msi/*.msi + src-tauri/target/release/bundle/appimage/* + src-tauri/target/release/bundle/deb/* + src-tauri/target/release/bundle/msi/* create-release-file: needs: test-tauri runs-on: ubuntu-20.04 steps: - uses: actions/download-artifact@v3 - - name: Show folder structure + - uses: actions/checkout@v2 + - name: Create release file run: | ls -al tree + python3 scripts/create-release-file.py + ls -al + + - name: upload build artifact + uses: actions/upload-artifact@v2 + with: + path: | + latest-release.json |