-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 860 Bytes
/
Copy pathbuild_all.yml
File metadata and controls
35 lines (32 loc) · 860 Bytes
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
---
name: "Build All"
on:
push:
paths:
- .github/workflows/build_all.yml
pull_request:
paths:
- .github/workflows/build_all.yml
jobs:
build_release:
uses: elabit/robotmk/.github/workflows/release.yaml@dev/sol/artifacts_III
release:
runs-on: ubuntu-latest
needs: [build_release]
steps:
- name: "Download All"
uses: actions/download-artifact@v3
- name: "Show Available Artifacts"
run: find . -type f
- name: "Update Release"
uses: ncipollo/release-action@v1.13.0
with:
name: "Daily Build"
allowUpdates: true
artifacts: "executables.zip"
replacesArtifacts: true
removeArtifacts: true
prerelease: true
artifactErrorsFailBuild: true
updateOnlyUnreleased: true
makeLatest: false