forked from ping-pub/explorer
-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (49 loc) · 2 KB
/
docker.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
58
# This workflow will build and push a new container image to Docker Hub
name: Build and Push docker image to Docker Hub
on:
push:
tags:
- 'v*'
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build-push:
name: Build and Push docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build, tag, and push image to Docker Hub
id: build-push-image
env:
DOCKERHUB_USERNAME: alloranetwork
DOCKERHUB_REPOSITORY: ${{github.event.repository.name}}
run: |
#! Due to we trigger on push.tags GITHUB_REF - is the tag name
GIT_TAG="$(echo $GITHUB_REF| sed 's#refs/tags/##')"
IMAGE_TAG="${GITHUB_SHA:0:8}"
EXTRA_IMAGE_TAGS=$GIT_TAG
#! Add latest tag only if on named releases tag='v*'
if [[ ${GIT_TAG} == v* ]]; then
EXTRA_IMAGE_TAGS="${EXTRA_IMAGE_TAGS};latest"
fi
for config in chains-all/*.json; do
rm -rf chains
mkdir -p chains
cp $config chains/$(basename $config)
CHAIN=$(basename $config .json)
# Build a docker container and push it to Docker Hub.
docker build --pull --build-arg "GH_TOKEN=${{ secrets.GH_READONLY_PAT }}" -t $DOCKERHUB_USERNAME/$DOCKERHUB_REPOSITORY:$CHAIN-$IMAGE_TAG .
docker push $DOCKERHUB_USERNAME/$DOCKERHUB_REPOSITORY:$CHAIN-$IMAGE_TAG
# Build and PUSH additional tags
for tag in $(echo $EXTRA_IMAGE_TAGS| tr ";" "\n"); do
docker tag $DOCKERHUB_USERNAME/$DOCKERHUB_REPOSITORY:$CHAIN-$IMAGE_TAG $DOCKERHUB_USERNAME/$DOCKERHUB_REPOSITORY:$CHAIN-$tag
docker push $DOCKERHUB_USERNAME/$DOCKERHUB_REPOSITORY:$CHAIN-$tag
done
done