Creating elabit based workflow #45
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_robotmk: | ||
uses: elabit/robotmk/.github/workflows/robotmk.yml@main | ||
Check failure on line 13 in .github/workflows/build_all.yml GitHub Actions / .github/workflows/build_all.ymlInvalid workflow file
|
||
build_rcc: | ||
uses: elabit/robotmk/.github/workflows/rcc.yml@main | ||
release: | ||
runs-on: ubuntu-latest | ||
needs: [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 |