-
-
Notifications
You must be signed in to change notification settings - Fork 66
39 lines (31 loc) · 999 Bytes
/
publish.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
# Inspired by https://github.com/openfaas/faas/blob/master/.github/workflows/publish.yml
name: publish
on:
push:
tags:
- "*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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 Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set TAG
run: echo TAG=${GITHUB_REF#refs/tags/} >> $GITHUB_ENV
- name: Publish ${{ matrix.svc }}
uses: docker/build-push-action@v3
with:
file: Dockerfile
outputs: "type=registry,push=true"
platforms: linux/amd64,linux/arm64
tags: |
lipanski/docker-static-website:${{ env.TAG }}
lipanski/docker-static-website:latest