push ci-image 1.0

This commit is contained in:
sfja 2026-03-23 22:37:33 +01:00
parent a955c01fc2
commit 488ec979fd
2 changed files with 10 additions and 2 deletions

View File

@ -9,7 +9,7 @@ on:
jobs:
verify:
runs-on: ubuntu-latest
container: sfja/h5-mst-ci-backend
container: sfja/h5-mst-ci-backend:1.0
steps:
- uses: actions/checkout@v4

View File

@ -1,6 +1,14 @@
#!/bin/bash
tag=sfja/h5-mst-ci-backend
version=$1
if [[ $version == "" ]]; then
echo "Please specify version"
echo "./publish.sh <version e.g. 1.0>"
exit 1
fi
tag=sfja/h5-mst-ci-backend:$version
set -xe