Skip to content

Creating elabit based workflow V #49

Creating elabit based workflow V

Creating elabit based workflow V #49

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_rcc:
uses: elabit/robotmk/.github/workflows/rcc.yaml@dev/sol/artifacts_II
release:
runs-on: ubuntu-latest
needs: [build_rcc]
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