Skip to content

Build SWU

Build SWU #37

Workflow file for this run

name: Build SWU
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
docker run --rm -e VERSION="${{ github.sha }}" -e KOBRA_MODEL_CODE="K3" -v ${{ github.workspace }}/build:/build -v ${{ github.workspace }}/files:/files ghcr.io/jbatonnet/rinkhals/build /bin/bash -c "chmod +x /build/*.sh && /build/build-swu.sh"
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: update-k2p-k3
path: |
build/dist/update.swu
- run: |
docker run --rm -e VERSION="${{ github.sha }}" -e KOBRA_MODEL_CODE="KS1" -v ${{ github.workspace }}/build:/build -v ${{ github.workspace }}/files:/files ghcr.io/jbatonnet/rinkhals/build /bin/bash -c "chmod +x /build/*.sh && /build/build-swu.sh"
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: update-ks1
path: |
build/dist/update.swu