pipeline runner
All checks were successful
Image builder / build (push) Successful in 14s

This commit is contained in:
Tanguy Herbron 2023-08-07 10:49:37 +02:00
parent cadd53caa8
commit 35521602c6
2 changed files with 4 additions and 20 deletions

View File

@ -15,20 +15,3 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Start shell build - name: Start shell build
run: CONTAINER_TOKEN=${{ secrets.CONTAINER_TOKEN }} ./build.sh run: CONTAINER_TOKEN=${{ secrets.CONTAINER_TOKEN }} ./build.sh
- name: Generate tag
id: tag_vars
run: echo "IMAGE_NAME=$(echo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]' | cut -d '/' -f3-)" >> $GITHUB_OUTPUT
- name: Login to register
uses: https://gitea.com/docker/login-action@v2
with:
registry: https://git.halis.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: https://github.com/docker/build-push-action@v1
with:
push: true
file: images/debian/Dockerfile.12.1-node18
tags: git.halis.io/athens-school/runner-images:debian12.1-node18

View File

@ -1,7 +1,8 @@
#!/bin/sh #!/bin/sh
export
echo $CONTAINER_TOKEN | docker login git.halis.io -u $GITHUB_ACTOR --password-stdin echo $CONTAINER_TOKEN | docker login git.halis.io -u $GITHUB_ACTOR --password-stdin
IMAGE_NAME=$(echo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]' | cut -d '/' -f3-)
docker pull ubuntu:latest docker pull ubuntu:latest
docker tag ubuntu:latest git.halis.io/athens-school/runner-images:shell-build docker tag ubuntu:latest $IMAGE_NAME:shell-auto-build
docker push git.halis.io/athens-school/runner-images:shell-build docker push $IMAGE_NAME:shell-auto-build