Skip to content

Release

Release #22

Workflow file for this run

---
name: "Release"
# Careful! This pushes a git tag to GitHub! The release itself is private.
on:
workflow_dispatch:
jobs:
build_rcc:
uses: ./.github/workflows/rcc.yaml
build_robotmk:
uses: ./.github/workflows/robotmk_build.yaml
release:
runs-on: ubuntu-latest
needs: [build_rcc, build_robotmk]
steps:
- uses: actions/checkout@v4 # Determines the ref, which is used for the
# release. For setting a different ref, all `needs` jobs need to be
# adjusted. Currently, everything uses the default branch.
- uses: actions/download-artifact@v4
with:
path: executables/
- run: find .
- run: zip -r executables.zip artifact