-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (48 loc) · 1.56 KB
/
cmake_upload_nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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