another approach
Build and Push Image / Build and push image (push) Failing after 34s Details

This commit is contained in:
Tobias Brunner 2023-11-14 21:49:39 +01:00
parent fab5b569a8
commit 5221a58b73
Signed by: tobru
SSH Key Fingerprint: SHA256:kywVhvCA+MIxL6eBgoQa+BfC/ROJqcfD2bpy1PR6Ebk
1 changed files with 14 additions and 18 deletions

View File

@ -8,29 +8,25 @@ jobs:
container: catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Tools
run: sudo apt-get -y update && sudo apt-get -y install buildah
run: sudo apt-get -y update && sudo apt-get -y install docker
- name: Build Image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: ioteer
tags: latest ${{ github.sha }}
containerfiles: |
./Dockerfile
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Push To git.tbrnt.ch
id: push-to-gitea
uses: redhat-actions/push-to-registry@v2
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: git.tbrnt.ch/tobru
registry: git.tbrnt.ch
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Print image url
run: echo "Image pushed to ${{ steps.push-to-gitea.outputs.registry-paths }}"
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
git.tbrnt.ch/tobru/ioteer:latest