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 963fc90 commit f0a419b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/rpcs3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,26 @@ jobs:
with:
name: RPCS3 for Windows
path: ${{ github.workspace }}/build

push_release:
if: github.event_name == 'push'
needs: [ Linux_Build, Windows_Build ]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@main

- name: Download artifacts
uses: actions/download-artifact@main
with:
merge-multiple: true
path: artifact

- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
ls artifact
gh release create ${{ GITHUB.RUN_NUMBER }} artifact/*.* --target ${{ GITHUB.SHA }} -t ${{ GITHUB.RUN_NUMBER }}

0 comments on commit f0a419b

Please sign in to comment.