Upload daily build packages 3.

This commit is contained in:
Gonzalo Exequiel Pedone 2021-06-28 21:00:57 -03:00
parent 1a6f2f31d0
commit b0a4622df5
No known key found for this signature in database
GPG key ID: B8B09E63E9B85BAF

View file

@ -7,6 +7,7 @@ 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:
@ -18,28 +19,28 @@ jobs:
chmod +x ports/ci/linux-mingw/install_deps.sh
./ports/ci/linux-mingw/install_deps.sh
- name: Release Build
if: startsWith(github.ref, 'refs/tags/')
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/')
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
- name: Daily Build
if: !startsWith(github.ref, 'refs/tags/')
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
env:
DAILY_BUILD: 1
run: |
chmod +x ports/ci/linux-mingw/build.sh
./ports/ci/linux-mingw/build.sh
- name: Daily Deploy
if: !startsWith(github.ref, 'refs/tags/')
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
env:
DAILY_BUILD: 1
run: |