-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1.02 KB
/
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
---
name: "Build All"
on:
push:
paths:
- .github/workflows/build_all.yml
pull_request:
paths:
- .github/workflows/build_all.yml
jobs:
# build_robotmk:
# uses: SoloJacobs/test_ci/.github/workflows/robotmk.yml@main
# build_rcc:
# uses: SoloJacobs/test_ci/.github/workflows/rcc.yml@main
build_collector:
uses: SoloJacobs/test_ci/.github/workflows/robotmk_collector.yml@main
release:
runs-on: ubuntu-latest
needs: [build_collector] #, build_rcc, build_robotmk]
steps:
- name: "Download All"
uses: actions/download-artifact@v3
- name: "DEBUG"
run: find .
- name: "Update Release"
uses: ncipollo/[email protected]
with:
name: "Daily Build"
allowUpdates: true
artifacts: "./artifact/robotmk_collector.ps1"
replacesArtifacts: true
removeArtifacts: true
prerelease: true
artifactErrorsFailBuild: true
updateOnlyUnreleased: true
makeLatest: false