diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-08-27 22:12:12 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-08-27 22:12:12 +0200 |
commit | 79575fb5ae0e6654672a16636449bd7c202be617 (patch) | |
tree | e7f7f6babdc30b48892f14588161900810fdb50d /.github/workflows/release.yml | |
parent | 0b15ad9065a7cf35ce606c3a2b45fafa0bbbb5eb (diff) | |
download | FlightCore-79575fb5ae0e6654672a16636449bd7c202be617.tar.gz FlightCore-79575fb5ae0e6654672a16636449bd7c202be617.zip |
Test releasev0.0.3
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1950fb68..7b06cb37 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,6 +50,13 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} + - name: upload build artifact + uses: actions/upload-artifact@v2 + with: + path: | + src-tauri/target/release/bundle/appimage/* + src-tauri/target/release/bundle/deb/* + src-tauri/target/release/bundle/msi/* - name: Release uses: softprops/action-gh-release@v1 with: @@ -57,3 +64,19 @@ jobs: src-tauri/target/release/bundle/appimage/* src-tauri/target/release/bundle/deb/* src-tauri/target/release/bundle/msi/* + + create-release-file: + needs: build + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - uses: actions/download-artifact@v3 + - name: Create release file + run: | + python3 scripts/create-release-file.py --version ${{github.event.release.tag_name}} + + - name: upload build artifact + uses: actions/upload-artifact@v2 + with: + path: | + latest-release.json |