-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (62 loc) · 1.89 KB
/
Copy pathdeploy.yml
File metadata and controls
79 lines (62 loc) · 1.89 KB
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
name: Deployer
on:
push:
branches:
- main
paths-ignore:
- "**.md"
- ".devcontainer/**"
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: 11
- name: Setup Nodejs
uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linter
run: pnpm lint
- name: Run tests
run: pnpm test
build-and-push:
runs-on: ubuntu latest
needs: lint-and-test
steps:
- name: checkout code
uses: actions/checkout@v6
- name: Login to Docker Hub
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }} # Set as SECRET on your github repository
password: ${{ secrets.DOCKERHUB_TOKEN }} # ^
- name: Setup docker Buildx
uses: docker/setup-buildx-action@v4
- name: Extract metadata
id: meta
uses: docker/metadata-action@v6
with:
images: ${{ secrets.DOCKERHUB_USERNAME }}/my-app
tags: |
type=raw,value=latest
type=sha,prefix=sha-
- name: Build and push
uses: docker/build-push-action@v7
with:
context: .
file: Dockerfile.prod
push: true
tags: ${{ steps.meta.output.tags }}
labels: ${{ steps.meta.output.labels }}
cache-from: type=registry,ref=${{ secrets.DOCKERHUB_USERNAME }}/my-app:buildcache
cache-to: type=registry,ref=${{ secrets.DOCKERHUB_USERNAME }}/my-app:buildcache,mode=max
build-args: | # Set as VARIABLE on your github repo
NEXT_PUBLIC_APP_URL=${{ vars.NEXT_PUBLIC_APP_URL }}