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_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: |