-
Notifications
You must be signed in to change notification settings - Fork 6
45 lines (37 loc) · 1.12 KB
/
Copy pathrelease-docker-dashboard.yml
File metadata and controls
45 lines (37 loc) · 1.12 KB
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
name: "Publish dashboard docker image"
on:
push:
tags:
- "*"
jobs:
# Push image to GitHub Packages.
push-docker-dashboard:
runs-on: ubuntu-latest
env:
DOCKER_CLI_EXPERIMENTAL: "enabled"
steps:
- uses: actions/checkout@v3
# get current tag
- name: tag
id: next_tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
with:
install: true
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & push dashboard
run: >-
docker buildx build --push
--file ./web.Dockerfile
--tag ghcr.io/tdex-network/dashboard:latest
--tag ghcr.io/tdex-network/dashboard:${{ steps.next_tag.outputs.tag }}
--platform linux/arm64,linux/amd64 .