2022-05-18 17:27:56 +00:00
|
|
|
name: build-upload
|
2022-07-06 15:51:44 +00:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '30 17 * * *'
|
2022-05-18 17:27:56 +00:00
|
|
|
jobs:
|
2022-07-06 15:51:44 +00:00
|
|
|
check_date:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Check latest commit
|
|
|
|
outputs:
|
|
|
|
should_run: ${{ steps.should_run.outputs.should_run }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: print latest_commit
|
|
|
|
run: echo ${{ github.sha }}
|
|
|
|
- id: should_run
|
|
|
|
continue-on-error: true
|
|
|
|
name: check latest commit is less than a day
|
|
|
|
if: ${{ github.event_name == 'schedule' }}
|
|
|
|
run: test -z $(git rev-list --after="24 hours" ${{ github.sha }}) && echo "::set-output name=should_run::false"
|
2022-05-18 17:27:56 +00:00
|
|
|
create-nightly-html5:
|
2022-07-06 15:51:44 +00:00
|
|
|
needs: check_date
|
|
|
|
if: ${{ needs.check_date.outputs.should_run != 'false'}}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
|
|
|
- name: Build game?
|
|
|
|
run: |
|
|
|
|
haxelib run lime build html5 -debug
|
|
|
|
ls
|
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
|
|
|
butler-key: ${{ secrets.BUTLER_API_KEY}}
|
|
|
|
build-dir: export/debug/html5/bin
|
|
|
|
target: html5
|
2022-05-18 17:27:56 +00:00
|
|
|
create-nightly-win:
|
2022-07-06 15:51:44 +00:00
|
|
|
needs: check_date
|
|
|
|
if: ${{ needs.check_date.outputs.should_run != 'false'}}
|
2022-05-18 17:27:56 +00:00
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
|
|
|
- name: Build game
|
|
|
|
run: |
|
|
|
|
haxelib run lime build windows -debug
|
|
|
|
dir
|
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
|
|
|
butler-key: ${{ secrets.BUTLER_API_KEY}}
|
|
|
|
build-dir: export/debug/windows/bin
|
|
|
|
target: win
|
|
|
|
create-nightly-mac:
|
2022-07-06 15:51:44 +00:00
|
|
|
needs: check_date
|
|
|
|
if: ${{ needs.check_date.outputs.should_run != 'false'}}
|
2022-05-18 17:27:56 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
|
|
|
- name: Build game?
|
|
|
|
run: |
|
|
|
|
haxelib run lime build mac -debug
|
|
|
|
ls
|
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
|
|
|
butler-key: ${{ secrets.BUTLER_API_KEY}}
|
|
|
|
build-dir: export/debug/macos/bin
|
|
|
|
target: mac
|
|
|
|
create-nightly-linux:
|
2022-07-06 15:51:44 +00:00
|
|
|
needs: check_date
|
|
|
|
if: ${{ needs.check_date.outputs.should_run != 'false'}}
|
2022-05-18 17:27:56 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/setup-haxeshit
|
|
|
|
- name: Setting up Linux
|
|
|
|
run: |
|
|
|
|
haxelib run lime setup linux
|
|
|
|
- name: Build game?
|
|
|
|
run: |
|
|
|
|
haxelib run lime build linux -debug
|
|
|
|
ls
|
|
|
|
- uses: ./.github/actions/upload-itch
|
|
|
|
with:
|
|
|
|
butler-key: ${{ secrets.BUTLER_API_KEY}}
|
|
|
|
build-dir: export/debug/linux/bin
|
2022-07-06 15:51:44 +00:00
|
|
|
target: linux
|