mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-02 22:28:45 +00:00
Update build.yml
This commit is contained in:
parent
f01703726e
commit
739d6e4355
1 changed files with 5 additions and 1 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -402,6 +402,10 @@ jobs:
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
- name: Get last commit title from main
|
||||||
|
id: get_commit_title
|
||||||
|
run: echo "title=$(git log origin/main -1 --pretty=%s)" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Create Pre-Release on GitHub
|
- name: Create Pre-Release on GitHub
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
|
@ -411,7 +415,7 @@ jobs:
|
||||||
tag: "Pre-release-shadPS4-${{ needs.get-info.outputs.date }}-${{ needs.get-info.outputs.shorthash }}"
|
tag: "Pre-release-shadPS4-${{ needs.get-info.outputs.date }}-${{ needs.get-info.outputs.shorthash }}"
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: true
|
prerelease: true
|
||||||
body: ${{ github.event.head_commit.message }}
|
body: "${{ env.title }}"
|
||||||
artifacts: ./artifacts/*.zip
|
artifacts: ./artifacts/*.zip
|
||||||
|
|
||||||
- name: Get current pre-release information
|
- name: Get current pre-release information
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue