-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (48 loc) · 1.58 KB
/
cd.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
name: CD
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
strategy:
matrix:
node: ['12']
steps:
- name: Setting up enviroment variables
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
# https://github.com/actions/checkout
- name: Checkout code
uses: actions/checkout@v2
# https://github.com/actions/setup-node
- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci --production
- name: Remove dev packages
run: npm prune --production --no-audit
# https://github.com/docker/build-push-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push to DockerHub
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: |
${{ secrets.DOCKER_REPOSITORY }}:${{ env.RELEASE_VERSION }}
${{ secrets.DOCKER_REPOSITORY }}:latest
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}