Fixed packages upload.
This commit is contained in:
parent
c03fee2bdd
commit
79ec0b9406
2 changed files with 4 additions and 4 deletions
4
.github/workflows/linux-mingw.yml
vendored
4
.github/workflows/linux-mingw.yml
vendored
|
@ -89,14 +89,14 @@ jobs:
|
||||||
chmod +x ports/ci/linux-mingw/deploy.sh
|
chmod +x ports/ci/linux-mingw/deploy.sh
|
||||||
./ports/ci/linux-mingw/deploy.sh
|
./ports/ci/linux-mingw/deploy.sh
|
||||||
- name: Release Upload
|
- name: Release Upload
|
||||||
uses: softprops/action-gh-release@v0.1.6
|
uses: softprops/action-gh-release@v1
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||||
with:
|
with:
|
||||||
files: packages/windows-gcc/*
|
files: packages/windows-gcc/*
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Daily Build Upload
|
- name: Daily Build Upload
|
||||||
uses: softprops/action-gh-release@v0.1.6
|
uses: softprops/action-gh-release@v1
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
with:
|
with:
|
||||||
body: "${{ github.event.head_commit.message }} (commit: ${{ github.sha }})"
|
body: "${{ github.event.head_commit.message }} (commit: ${{ github.sha }})"
|
||||||
|
|
4
.github/workflows/mac.yml
vendored
4
.github/workflows/mac.yml
vendored
|
@ -40,14 +40,14 @@ jobs:
|
||||||
chmod +x ports/ci/mac/deploy.sh
|
chmod +x ports/ci/mac/deploy.sh
|
||||||
./ports/ci/mac/deploy.sh
|
./ports/ci/mac/deploy.sh
|
||||||
- name: Release Upload
|
- name: Release Upload
|
||||||
uses: softprops/action-gh-release@v0.1.6
|
uses: softprops/action-gh-release@v1
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||||
with:
|
with:
|
||||||
files: packages/mac/*
|
files: packages/mac/*
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Daily Build Upload
|
- name: Daily Build Upload
|
||||||
uses: softprops/action-gh-release@v0.1.6
|
uses: softprops/action-gh-release@v1
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
with:
|
with:
|
||||||
body: "${{ github.event.head_commit.message }} (commit: ${{ github.sha }})"
|
body: "${{ github.event.head_commit.message }} (commit: ${{ github.sha }})"
|
||||||
|
|
Loading…
Reference in a new issue