-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (45 loc) · 1.49 KB
/
webserver.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Docker Web Server
on:
workflow_dispatch:
jobs:
docker-build-push:
name: Build and Publish
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Extract Repo Owner
shell: bash
run: echo "##[set-output name=owner;]$(echo ${GITHUB_REPOSITORY%%/*} | tr '[:upper:]' '[:lower:]')"
id: extract_owner
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to GHCR
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ steps.extract_owner.outputs.owner }}
password: ${{ secrets.CR_PAT }}
-
name: Build and Push
uses: docker/build-push-action@v2
with:
context: "./2. Web Server/"
file: "./2. Web Server/Dockerfile"
platforms: linux/amd64,linux/arm64/v8,linux/arm/v6,linux/arm/v7,linux/386
push: true
tags: |
ghcr.io/${{ steps.extract_owner.outputs.owner }}/webserver:latest
no-cache: false
labels: |
org.opencontainers.image.title=WebServer
org.opencontainers.image.description=${{ github.event.repository.description }}
org.opencontainers.image.url=${{ github.event.repository.html_url }}
org.opencontainers.image.source=${{ github.event.repository.html_url }}