-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 998 Bytes
/
build_all.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
---
name: "Build All"
on:
push:
paths:
- .github/workflows/build_all.yml
pull_request:
paths:
- .github/workflows/build_all.yml
jobs:
build_robotmk:
uses: elabit/robotmk/.github/workflows/robotmk.yml@main
build_rcc:
uses: elabit/robotmk/.github/workflows/rcc.yml@main
release:
runs-on: ubuntu-latest
needs: [build_rcc, build_robotmk]
steps:
- name: "Download All"
uses: actions/download-artifact@v3
- name: "Show Available Artifacts"
run: find . -type f
- name: "Zip Artifacts"
run: zip -r executables.zip artifact
- name: "Update Release"
uses: ncipollo/[email protected]
with:
name: "Daily Build"
allowUpdates: true
artifacts: "executables.zip"
replacesArtifacts: true
removeArtifacts: true
prerelease: true
artifactErrorsFailBuild: true
updateOnlyUnreleased: true
makeLatest: false