Skip to content

Commit

Permalink
fixuip
Browse files Browse the repository at this point in the history
  • Loading branch information
N7Alpha committed Nov 5, 2023
1 parent 962f78b commit 3a21d95
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

0 comments on commit 3a21d95

Please sign in to comment.