Creating elabit based workflow V #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |