diff options
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 |