Fixed release zip file name #366
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| tags: | |
| - 'v*' | |
| branches: | |
| - 'main' | |
| - 'feature/*' | |
| jobs: | |
| pre-commit: | |
| name: "Run Pre-Commit Checks" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| - uses: pre-commit/action@v3.0.1 | |
| artifacts: | |
| name: "Build Artifacts" | |
| needs: pre-commit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build | |
| uses: docker/build-push-action@v6 | |
| with: | |
| push: false | |
| context: . | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| outputs: type=local,dest=./out | |
| - name: Copy Artifacts | |
| run: | | |
| mkdir artifacts | |
| cp ./out/openmower-yardforce.bin ./artifacts | |
| cp ./out/openmower-yardforce.elf ./artifacts | |
| cp ./out/openmower-yardforce-v4.bin ./artifacts | |
| cp ./out/openmower-yardforce-v4.elf ./artifacts | |
| cp ./out/openmower-worx.bin ./artifacts | |
| cp ./out/openmower-worx.elf ./artifacts | |
| cp ./out/openmower-lyfco-e1600.bin ./artifacts | |
| cp ./out/openmower-lyfco-e1600.elf ./artifacts | |
| cp ./out/openmower-sabo.bin ./artifacts | |
| cp ./out/openmower-sabo.elf ./artifacts | |
| cp ./out/ram-info.html ./artifacts | |
| cp ./out/flash-info.html ./artifacts | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: openmower | |
| path: artifacts/ | |
| tagged-release: | |
| runs-on: ubuntu-latest | |
| if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v') | |
| needs: artifacts | |
| steps: | |
| - name: Download artifacts from build stage | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: openmower | |
| path: artifacts | |
| - name: Compress release directory into a versioned ZIP file | |
| run: cd artifacts && zip -r "../fw-openmower-v2-${{ github.ref_name }}.zip" . | |
| - uses: "marvinpinto/action-automatic-releases@latest" | |
| with: | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| prerelease: false | |
| files: "fw-openmower-v2-${{ github.ref_name }}.zip" |