diff --git a/.github/workflows/build-configurator.yml b/.github/workflows/build-configurator.yml index e8741476..8f3eefeb 100644 --- a/.github/workflows/build-configurator.yml +++ b/.github/workflows/build-configurator.yml @@ -29,17 +29,11 @@ jobs: relative_export_path: ../../ archive_output: true - # - name: Upload Linux artifact - # uses: actions/upload-artifact@v4 - # with: - # name: Godot Linux Configurator - # path: /home/runner/work/linux.zip - - - - name: create release - uses: ncipollo/release-action@v1.11.2 + - name: Upload Linux artifact + uses: actions/upload-artifact@v4 with: - token: ${{ secrets.GITHUB_TOKEN }} - generateReleaseNotes: true - tag: ${{ github.ref_name }} - artifacts: ${{ steps.export.outputs.archive_directory }}/* # Added "/*" at the end is glob pattern match for this action + name: Godot Linux Configurator + path: /home/runner/work/linux.zip + + + \ No newline at end of file diff --git a/.github/workflows/go-simple.yml b/.github/workflows/go-simple.yml index 8ccccb2d..4d48906f 100644 --- a/.github/workflows/go-simple.yml +++ b/.github/workflows/go-simple.yml @@ -28,13 +28,13 @@ jobs: - name: Upload Artifact uses: actions/upload-artifact@v2 with: - name: Client - ${{ matrix.platform }} + name: ${{ matrix.platform }} path: ${{ github.workspace }}/${{ steps.build.outputs.build }} - name: Upload Release Asset 🚀 uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: "Client - linux.zip" + file: tools/configurator/linux.zip tag: ${{env.TAG}} overwrite: true file_glob: false \ No newline at end of file