Upload daily build packages 6.
This commit is contained in:
parent
60c3165892
commit
287d6f2c61
4 changed files with 38 additions and 21 deletions
15
.github/workflows/linux-mingw.yml
vendored
15
.github/workflows/linux-mingw.yml
vendored
|
@ -19,15 +19,11 @@ jobs:
|
|||
./ports/ci/linux-mingw/install_deps.sh
|
||||
- name: Release Build
|
||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||
env:
|
||||
RELEASE_BUILD: 1
|
||||
run: |
|
||||
chmod +x ports/ci/linux-mingw/build.sh
|
||||
./ports/ci/linux-mingw/build.sh
|
||||
- name: Release Deploy
|
||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||
env:
|
||||
RELEASE_BUILD: 1
|
||||
run: |
|
||||
chmod +x ports/ci/linux-mingw/deploy.sh
|
||||
./ports/ci/linux-mingw/deploy.sh
|
||||
|
@ -45,27 +41,22 @@ jobs:
|
|||
run: |
|
||||
chmod +x ports/ci/linux-mingw/deploy.sh
|
||||
./ports/ci/linux-mingw/deploy.sh
|
||||
# - name: Upload
|
||||
# run: |
|
||||
# chmod +x ports/ci/linux-mingw/upload.sh
|
||||
# ./ports/ci/linux-mingw/upload.sh
|
||||
- name: Release
|
||||
- name: Release Upload
|
||||
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
|
||||
- name: Daily Build Upload
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||
with:
|
||||
body: ${{ github.event.head_commit.message }}
|
||||
body: ${{ github.event.head_commit.message }} (commit: ${{ github.sha }})
|
||||
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
|
||||
|
|
40
.github/workflows/mac.yml
vendored
40
.github/workflows/mac.yml
vendored
|
@ -14,18 +14,48 @@ jobs:
|
|||
run: |
|
||||
chmod +x ports/ci/mac/install_deps.sh
|
||||
./ports/ci/mac/install_deps.sh
|
||||
- name: Build
|
||||
- name: Release Build
|
||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||
run: |
|
||||
chmod +x ports/ci/mac/build.sh
|
||||
./ports/ci/mac/build.sh
|
||||
- name: Deploy
|
||||
- name: Release Deploy
|
||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||
run: |
|
||||
chmod +x ports/ci/mac/deploy.sh
|
||||
./ports/ci/mac/deploy.sh
|
||||
- name: Upload
|
||||
- name: Daily Build
|
||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||
env:
|
||||
DAILY_BUILD: 1
|
||||
run: |
|
||||
chmod +x ports/ci/mac/upload.sh
|
||||
./ports/ci/mac/upload.sh
|
||||
chmod +x ports/ci/mac/build.sh
|
||||
./ports/ci/mac/build.sh
|
||||
- name: Daily Deploy
|
||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||
env:
|
||||
DAILY_BUILD: 1
|
||||
run: |
|
||||
chmod +x ports/ci/mac/deploy.sh
|
||||
./ports/ci/mac/deploy.sh
|
||||
- name: Release Upload
|
||||
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 Upload
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||
with:
|
||||
body: ${{ github.event.head_commit.message }} (commit: ${{ github.sha }})
|
||||
prerelease: true
|
||||
files: webcamoid-packages/*
|
||||
name: Daily Build
|
||||
tag_name: daily-build
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: MacOS daily build packages
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
2
.github/workflows/windows-msys.yml
vendored
2
.github/workflows/windows-msys.yml
vendored
|
@ -29,8 +29,6 @@ jobs:
|
|||
run: ./ports/ci/windows-msys/build.sh
|
||||
- name: Deploy
|
||||
run: ./ports/ci/windows-msys/deploy.sh
|
||||
- name: Upload
|
||||
run: ./ports/ci/windows-msys/upload.sh
|
||||
- name: Windows MSYS daily build packages
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
2
.github/workflows/windows-vs.yml
vendored
2
.github/workflows/windows-vs.yml
vendored
|
@ -18,8 +18,6 @@ jobs:
|
|||
run: ports\ci\windows-vs\build.bat
|
||||
- name: Deploy
|
||||
run: ports\ci\windows-vs\deploy.bat
|
||||
- name: Upload
|
||||
run: ports\ci\windows-vs\upload.bat
|
||||
- name: Windows MSVC daily build packages
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue