-
Notifications
You must be signed in to change notification settings - Fork 0
92 lines (77 loc) · 2.67 KB
/
docker.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: docker
env:
REGISTRY: ghcr.io
on:
push:
branches:
- main
- develop
tags:
- v*
jobs:
deploy-staging:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/heads/develop')
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Define staging tag
run: echo "STAGING_TAG=staging" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: 'linux/amd64,linux/arm64'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.CR_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
platforms: 'linux/amd64,linux/arm64'
tags: ${{ env.REGISTRY }}/masl/undershorts:${{ env.STAGING_TAG }}
deploy-production:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags')
steps:
- name: Extract Version
id: version_step
run: |
echo "##[set-output name=version;]VERSION=${GITHUB_REF#$"refs/tags/v"}"
echo "##[set-output name=version_tag;]$GITHUB_REPOSITORY:${GITHUB_REF#$"refs/tags/v"}"
echo "##[set-output name=latest_tag;]$GITHUB_REPOSITORY:latest"
- name: Print Version
run: |
echo ${{steps.version_step.outputs.version_tag}}
echo ${{steps.version_step.outputs.latest_tag}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: 'linux/amd64,linux/arm64'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.CR_TOKEN }}
- name: PrepareReg Names
run: |
echo VERSION_TAG=$(echo ${{ steps.version_step.outputs.version_tag }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
echo LASTEST_TAG=$(echo ${{ steps.version_step.outputs.latest_tag }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
platforms: 'linux/amd64,linux/arm64'
tags: |
${{ env.REGISTRY }}/${{ env.VERSION_TAG }}
${{ env.REGISTRY }}/${{ env.LASTEST_TAG }}
build-args: |
${{ steps.version_step.outputs.version }}