-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (57 loc) · 1.73 KB
/
docker-image.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
name: Docker Image CI
on:
push:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
# build:
# runs-on: ubuntu-latest
# needs: lint
# if : ${{ github.ref == 'refs/heads/main' }}
# steps:
# -
# name: Checkout
# uses: actions/checkout@v2
# -
# name: Docker Metadata
# id: meta
# uses: docker/metadata-action@v3
# with:
# images: ${{ secrets.DOCKER_REPOSITORY }}
# tags: |
# type=sha,enable=true,priority=100,prefix=,suffix=,format=short
# -
# 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
# if: github.event_name != 'pull_request'
# uses: docker/login-action@v1
# with:
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}
# -
# name: Build and push
# id: docker_build
# uses: docker/build-push-action@v2
# with:
# push: ${{ github.event_name != 'pull_request' }}
# tags: |
# ${{ steps.meta.outputs.tags }}
# ${{ secrets.DOCKER_REPOSITORY }}:latest
# build-args: |
# GIT_SHA=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}
# PAYLOAD_URL=${{ vars.PAYLOAD_URL }}
# FRONTEND_URL=${{ vars.FRONTEND_URL }}
# TURNSTILE_SITE_KEY=${{ vars.TURNSTILE_SITE_KEY }}