forked from cubedro/eth-netstats
-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (51 loc) · 1.76 KB
/
internal.yaml
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
48
49
50
51
52
53
54
55
56
57
name: Internal-Dockerize
on:
push:
tags:
- 'v*.*.*-internal'
env:
REGISTRY: ghcr.io
IMAGE_REPOSITORY: axieinfinity/ronin-netstat
DOCKER_FILE: Dockerfile
jobs:
push_to_docker_registry:
name: Push Docker image to GHCR.IO
runs-on: ubuntu-latest
environment: Internal
permissions:
contents: read
packages: write
steps:
- name: 'Checkout Repo With Submodule'
uses: 'actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c' #v3.1.0
with:
submodules: true
- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@57396166ad8aefe6098280995947635806a0e6ea
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_REPOSITORY }}
tags: |
type=ref,suffix=-{{sha}},event=branch
type=ref,suffix=-{{sha}},event=pr
type=ref,suffix=-{{sha}},event=tag
type=semver,event=tag,pattern={{raw}}
# Enable Registry Cache
- name: "Set up Docker Buildx"
uses: "docker/setup-buildx-action@8c0edbc76e98fa90f69d9a2c020dcb50019dc325" #v2.2.1
- name: Build and push Docker image
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3 #v3.3.0
with:
context: .
file: ${{ env.DOCKER_FILE }}
push: true
build-args: |
WS_SECRET=${{ secrets.WS_SECRET }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}