-
Notifications
You must be signed in to change notification settings - Fork 7
47 lines (40 loc) · 1.4 KB
/
release.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
name: Release docker images
on:
push:
tags:
- v**
env:
ECR_ENABLED: true
ECR_REPO: public.ecr.aws/l9h3g6c6/injective-price-oracle
GHCR_ENABLED: false
GHCR_REPO: ghcr.io/injectivelabs/injective-price-oracle
jobs:
multi-release:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout injective-price-oracle
uses: actions/checkout@master
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
platforms: linux/amd64
- name: Log-in to ghcr.io
if: env.GHCR_ENABLED == 'true'
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
- name: Login to Public ECR
if: env.ECR_ENABLED == 'true'
uses: docker/login-action@v2
with:
registry: public.ecr.aws
username: ${{ secrets.AWS_KEY }}
password: ${{ secrets.AWS_SECRET }}
env:
AWS_REGION: us-east-1
- name: Build
run: |
TAG=${{ github.ref_name }}
[[ $ECR_ENABLED == "false" ]] || docker buildx build --tag $ECR_REPO:$TAG --tag $ECR_REPO:latest --platform linux/amd64 --push .
[[ $GHCR_ENABLED == "false" ]] || docker buildx build --tag $GHCR_REPO:$TAG --tag $GHCR_REPO:latest --platform linux/amd64 --push .