pipeline runner
Some checks failed
S3 mount container image build / build (push) Failing after 18s

This commit is contained in:
Tanguy Herbron 2023-08-07 11:34:31 +02:00
parent f0450babde
commit 4713dce540

View File

@ -3,31 +3,26 @@ on:
release:
types: [published]
push:
workflow_dispatch:
jobs:
build:
container:
image: ghcr.io/catthehacker/ubuntu:custom-20.04
image: git.halis.io/athens-school/runner-images:debian12.1-node18
runs-on: [arm64]
steps:
- name: Make tag
id: tag_vars
run: echo "IMAGE_NAME=$(echo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]' | cut -d '/' -f3-)" >> $GITHUB_OUTPUT
#- name: Docker login
# run: docker login ${{ GITHUB_SERVER_URL }} -u ${{ GITHUB_REPOSITORY_OWNER }} --password not-a-password
- name: Login to register
uses: https://gitea.com/docker/login-action@v2
with:
registry: git.halis.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker pull
run: docker pull ubuntu:latest
- name: Var envs
run: export
- name: Docker retag
run: docker tag ubuntu:latest ${{ steps.tag_vars.outputs.IMAGE_NAME }}:latest
- name: Docker push
run: docker push ${{ steps.tag_vars.outputs.IMAGE_NAME }}:latest
password: ${{ secrets.CONTAINER_TOKEN }}
- name: Build and push
uses: https://github.com/docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ IMAGE_NAME }}:latest