Some checks failed
Deploy Container Image to Registry / docker (push) Failing after 1m18s
Signed-off-by: Patrick Niebeling <patrick.niebeling@adacor.com>
27 lines
724 B
YAML
27 lines
724 B
YAML
name: Deploy Container Image to Registry
|
|
on: ['push']
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ secrets.REG_GITEA_USERNAME }}
|
|
password: ${{ secrets.REG_GITEA_PASSWORD }}
|
|
# - name: Build and push
|
|
# uses: docker/build-push-action@v6
|
|
# with:
|
|
# platforms: linux/amd64,linux/arm64
|
|
# push: true
|
|
# tags: |
|
|
# user/app:latest
|
|
# user/app:1.0.0 |