alpine-s6/.gitea/workflows/container.yaml
Sebastian Hugentobler e9158f00b8
Some checks failed
Build Container Image / build-container (push) Has been cancelled
try pushing image
2023-12-13 01:13:57 +01:00

27 lines
827 B
YAML

name: Build Container Image
on: [push]
jobs:
build-container:
runs-on: buildah-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Build image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: thallian/alpine-s6
tags: ${{ gitea.ref_name }} ${{ gitea.sha }}
archs: arm64, amd64
containerfiles: |
./Containerfile
- name: Push to dockerhub
id: push-to-dockerhub
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: docker.io
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PW }}