diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 358e07f..e49d3b3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,14 +20,15 @@ jobs: with: draft: false prerelease: false - release_name: Automated Release ${{ github.ref }} + release_name: ${{ github.ref }} tag_name: ${{ github.ref }} - body: This is an automated release for ${{ github.ref }}`. +# body: This is an automated release for ${{ github.ref }}`. env: GITHUB_TOKEN: ${{ github.token }} build: runs-on: self-hosted + needs: create-release strategy: matrix: version: @@ -64,7 +65,7 @@ jobs: env: GITHUB_TOKEN: ${{ github.token }} with: - upload_url: ${{ steps.create_release.outputs.upload_url }} + upload_url: ${{ needs.create-release.outputs.upload_url }} # Reference the output from create-release job asset_path: ${{ runner.temp }}/UnrealLibretro-${{ matrix.version.major }}.${{ matrix.version.minor }}.zip asset_name: UnrealLibretro-${{ matrix.version.major }}.${{ matrix.version.minor }}.zip asset_content_type: application/zip