Bump to LabOne 24.10 (24.10.64896) #42
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 labone_full | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: 'arm64,arm' | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Set LabOne version | |
run: | | |
VER=$(cat labone_version.txt) | |
echo "VERSION=$VER" >> $GITHUB_ENV | |
echo "SHORT_VERSION=${VER:0:5}" >> $GITHUB_ENV | |
- | |
name: Build LabOne All-in-One Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
push: false | |
platforms: linux/amd64,linux/arm64 | |
tags: zhinst/labone:${{ env.VERSION }}-full, zhinst/labone:${{ env.SHORT_VERSION }}-full | |
build-args: | |
LABONE_VERSION=${{ env.VERSION }} |