Upload daily build packages 3.
This commit is contained in:
parent
1a6f2f31d0
commit
b0a4622df5
1 changed files with 5 additions and 4 deletions
9
.github/workflows/linux-mingw.yml
vendored
9
.github/workflows/linux-mingw.yml
vendored
|
@ -7,6 +7,7 @@ env:
|
||||||
ARCH_ROOT_DATE: 2021.05.01
|
ARCH_ROOT_DATE: 2021.05.01
|
||||||
ARCH_ROOT_URL: https://mirror.rackspace.com/archlinux
|
ARCH_ROOT_URL: https://mirror.rackspace.com/archlinux
|
||||||
NSIS_VERSION: 3.06.1
|
NSIS_VERSION: 3.06.1
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -18,28 +19,28 @@ jobs:
|
||||||
chmod +x ports/ci/linux-mingw/install_deps.sh
|
chmod +x ports/ci/linux-mingw/install_deps.sh
|
||||||
./ports/ci/linux-mingw/install_deps.sh
|
./ports/ci/linux-mingw/install_deps.sh
|
||||||
- name: Release Build
|
- name: Release Build
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||||
env:
|
env:
|
||||||
RELEASE_BUILD: 1
|
RELEASE_BUILD: 1
|
||||||
run: |
|
run: |
|
||||||
chmod +x ports/ci/linux-mingw/build.sh
|
chmod +x ports/ci/linux-mingw/build.sh
|
||||||
./ports/ci/linux-mingw/build.sh
|
./ports/ci/linux-mingw/build.sh
|
||||||
- name: Release Deploy
|
- name: Release Deploy
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||||
env:
|
env:
|
||||||
RELEASE_BUILD: 1
|
RELEASE_BUILD: 1
|
||||||
run: |
|
run: |
|
||||||
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: Daily Build
|
- name: Daily Build
|
||||||
if: !startsWith(github.ref, 'refs/tags/')
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
env:
|
env:
|
||||||
DAILY_BUILD: 1
|
DAILY_BUILD: 1
|
||||||
run: |
|
run: |
|
||||||
chmod +x ports/ci/linux-mingw/build.sh
|
chmod +x ports/ci/linux-mingw/build.sh
|
||||||
./ports/ci/linux-mingw/build.sh
|
./ports/ci/linux-mingw/build.sh
|
||||||
- name: Daily Deploy
|
- name: Daily Deploy
|
||||||
if: !startsWith(github.ref, 'refs/tags/')
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
env:
|
env:
|
||||||
DAILY_BUILD: 1
|
DAILY_BUILD: 1
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue