Skip to content

Commit

Permalink
Update rpcs3.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
illusion0001 authored Jun 12, 2024
1 parent 2ed7b99 commit 42d329d
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/rpcs3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
name: RPCS3 for Linux (${{ matrix.compiler }})
path: ${{ github.workspace }}/build/*.AppImage
retention-days: 1
compression-level: 0

Windows_Build:
runs-on: windows-latest
Expand All @@ -64,8 +65,11 @@ jobs:
VULKAN_VER: '1.3.268.0'
VULKAN_SDK_SHA: '8459ef49bd06b697115ddd3d97c9aec729e849cd775f5be70897718a9b3b9db5'
CACHE_DIR: ./cache
UPLOAD_COMMIT_HASH: 7d09e3be30805911226241afbb14f8cdc2eb054e
UPLOAD_REPO_FULL_NAME: "RPCS3/rpcs3-binaries-win"
BUILD_ARTIFACTSTAGINGDIRECTORY: ${{ github.workspace }}\build
#ARTIFACT_DIR: ${{ github.workspace }}\build

#UPLOAD_COMMIT_HASH: 7d09e3be30805911226241afbb14f8cdc2eb054e
#UPLOAD_REPO_FULL_NAME: "RPCS3/rpcs3-binaries-win"

steps:
- name: Checkout repository
Expand Down Expand Up @@ -103,11 +107,12 @@ jobs:
$key = $line[0]
$val = $line[1]
echo "$key=$val"
if ($key -eq "AVVER") {
echo "::set-output name=avver::$val"
}
echo "$key=$val" >> $env:GITHUB_ENV
}
}
echo "BUILD_ARTIFACTSTAGINGDIRECTORY=${{ github.workspace }}\build" >> $env:GITHUB_ENV
echo "ARTIFACT_DIR=${{ github.workspace }}\build" >> $env:GITHUB_ENV
mkdir build
- name: Add msbuild to PATH
Expand All @@ -126,6 +131,7 @@ jobs:
name: RPCS3 for Windows
path: ${{ github.workspace }}/build
retention-days: 1
compression-level: 0

push_release:
if: |
Expand All @@ -148,4 +154,5 @@ jobs:
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create ${{ GITHUB.RUN_NUMBER }} artifact/*.* --target ${{ GITHUB.SHA }} -t ${{ GITHUB.RUN_NUMBER }}
AVVER: ${{ needs.build.outputs.avver }}
run: gh release create "$AVVER" artifact/*.* --target ${{ GITHUB.SHA }} -t "$AVVER"

0 comments on commit 42d329d

Please sign in to comment.