Upload daily build packages 5.
This commit is contained in:
parent
8e840eb20d
commit
60c3165892
1 changed files with 21 additions and 3 deletions
24
.github/workflows/linux-mingw.yml
vendored
24
.github/workflows/linux-mingw.yml
vendored
|
@ -7,7 +7,6 @@ env:
|
|||
ARCH_ROOT_DATE: 2021.05.01
|
||||
ARCH_ROOT_URL: https://mirror.rackspace.com/archlinux
|
||||
NSIS_VERSION: 3.06.1
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -48,8 +47,27 @@ jobs:
|
|||
./ports/ci/linux-mingw/deploy.sh
|
||||
# - name: Upload
|
||||
# run: |
|
||||
# #chmod +x ports/ci/linux-mingw/upload.sh
|
||||
# #./ports/ci/linux-mingw/upload.sh
|
||||
# chmod +x ports/ci/linux-mingw/upload.sh
|
||||
# ./ports/ci/linux-mingw/upload.sh
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||
with:
|
||||
files: webcamoid-packages/*
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Daily Build
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||
with:
|
||||
body: ${{ github.event.head_commit.message }}
|
||||
prerelease: true
|
||||
files: webcamoid-packages/*
|
||||
name: Daily Build
|
||||
tag_name: daily-build
|
||||
target_commitish: ${{ github.sha }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Linux MinGW daily build packages
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue