diff --git a/.github/workflows/go-simple.yml b/.github/workflows/go-simple.yml index 4881e347..c1d975cd 100644 --- a/.github/workflows/go-simple.yml +++ b/.github/workflows/go-simple.yml @@ -4,6 +4,9 @@ on: push: {} pull_request: {} +env: + TAG: v0.006 + jobs: Godot: runs-on: ubuntu-latest @@ -26,4 +29,12 @@ jobs: uses: actions/upload-artifact@v2 with: name: Client - ${{ matrix.platform }} - path: ${{ github.workspace }}/${{ steps.build.outputs.build }} \ No newline at end of file + 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 + tag: ${{env.TAG}} + overwrite: true + file_glob: true \ No newline at end of file