From 6d4a5272c64972a7f7cdd27cc2be957d13a4234b Mon Sep 17 00:00:00 2001 From: Osiris Team Date: Sat, 20 May 2023 13:25:25 +0200 Subject: [PATCH] fixes --- .github/workflows/release.yml | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 547e975..2375e6c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,7 @@ jobs: uses: svenstaro/upload-release-action@2.5.0 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ./build/*.* + file: ./desktop/build/*.* tag: ${{ github.event.inputs.version }} overwrite: true file_glob: true @@ -106,14 +106,10 @@ jobs: uses: svenstaro/upload-release-action@2.5.0 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ./build/*.* + file: ./desktop/build/*.* tag: ${{ github.event.inputs.version }} overwrite: true file_glob: true - - uses: actions/upload-artifact@v3 - with: - name: target-mac - path: ./build/ build-linux: runs-on: ubuntu-latest @@ -145,14 +141,10 @@ jobs: uses: svenstaro/upload-release-action@2.5.0 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ./build/*.* + file: ./desktop/build/*.* tag: ${{ github.event.inputs.version }} overwrite: true file_glob: true - - uses: actions/upload-artifact@v3 - with: - name: target-linux - path: ./build/ build-android: runs-on: ubuntu-latest @@ -191,8 +183,8 @@ jobs: with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: | - ./build/outputs/apk/debug/*.* - ./build/outputs/apk/release/*.* + ./android/build/outputs/apk/debug/*.* + ./android/build/outputs/apk/release/*.* tag: ${{ github.event.inputs.version }} overwrite: true file_glob: true @@ -230,7 +222,7 @@ jobs: with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: | - ./build/robovm/*.* + ./ios/build/robovm/*.* tag: ${{ github.event.inputs.version }} overwrite: true file_glob: true