Skip to content

upload_nightly

upload_nightly #623

name: upload_nightly
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * *'
jobs:
check_date:
runs-on: ubuntu-latest
name: Check latest commit
outputs:
should_run: ${{ steps.should_run.outputs.should_run }}
steps:
- uses: actions/checkout@v3
- 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"
update_nightly:
needs: check_date
if: ${{ needs.check_date.outputs.should_run != 'false' }}
runs-on: ubuntu-latest
steps:
- name: Download linux artifacts
uses: dawidd6/action-download-artifact@v2
with:
workflow: cmake_build.yml
workflow_conclusion: success
name: pbr_viewer_linux_x64
skip_unpack: false
- name: Download windows artifacts
uses: dawidd6/action-download-artifact@v2
with:
workflow: cmake_build_windows.yml
workflow_conclusion: success
name: pbr_viewer_win_x64
skip_unpack: true
- name: Update nightly pre-release
# - Upload artifacts defined by the user.
uses: pyTooling/Actions/releaser@r0
with:
tag: nightly
token: ${{ secrets.GITHUB_TOKEN }}
files: |
pbr_viewer_linux_x64.tar.gz
pbr_viewer_win_x64.zip