[GitHub Actions] Fix release body
Remove minor version from upload-release-asset.
This commit is contained in:
parent
aa154a4a23
commit
686748f4c6
|
@ -86,15 +86,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
tag_name: tag-${{ github.sha }}
|
tag_name: tag-${{ github.sha }}
|
||||||
release_name: xenia-canary-${{ github.sha }}
|
release_name: xenia-canary-${{ github.sha }}
|
||||||
body: |
|
|
||||||
Changes in this Release
|
|
||||||
- First Change
|
|
||||||
- Second Change
|
|
||||||
|
|
||||||
- name: Upload Release Asset
|
- name: Upload Release Asset
|
||||||
if: github.event.action != 'pull_request' && github.ref == 'refs/heads/canary' && matrix.cpu_arch == 'AVX'
|
if: github.event.action != 'pull_request' && github.ref == 'refs/heads/canary' && matrix.cpu_arch == 'AVX'
|
||||||
id: upload-release-asset
|
id: upload-release-asset
|
||||||
uses: actions/upload-release-asset@v1.0.1
|
uses: actions/upload-release-asset@v1
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue