Skip to content

Test

Test #44

Workflow file for this run

---
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: "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