Tranga-Website/.github/workflows/docker-image-cuttingedge.yml

46 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2023-07-20 23:10:15 +02:00
name: Docker Image CI
on:
push:
2023-07-30 16:21:04 +02:00
branches: [ "cuttingedge" ]
2023-07-20 23:10:15 +02:00
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# https://github.com/docker/setup-qemu-action#usage
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.2.0
# https://github.com/marketplace/actions/docker-setup-buildx
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3.3.0
2023-07-20 23:10:15 +02:00
# https://github.com/docker/login-action#docker-hub
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# https://github.com/docker/build-push-action#multi-platform-image
- name: Build and push Website
uses: docker/build-push-action@v4.1.1
with:
context: ./Website
2023-08-31 11:53:48 +02:00
file: ./Dockerfile
2023-07-20 23:10:15 +02:00
#platforms: linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
2023-07-21 00:20:13 +02:00
platforms: linux/amd64
2023-07-20 23:10:15 +02:00
pull: true
push: true
tags: |
2023-07-30 16:21:04 +02:00
glax/tranga-website:cuttingedge