-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (53 loc) · 1.44 KB
/
docker.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Build Docker Image
on:
push:
branches:
- main
paths-ignore:
- "README.md"
workflow_dispatch:
jobs:
build:
name: Build Walnuts.dev Docker Image
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Cache node_modules, .next/cache, .npm
uses: actions/cache@v4
with:
path: |
node_modules
.next
.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
- name: setup-node
uses: actions/setup-node@v4
with:
node-version: 22
- name: install
run: yarn install
- name: build
run: yarn build
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: walnuts1018
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
push: true
context: .
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
tags: |
ghcr.io/walnuts1018/walnuts.dev:latest
ghcr.io/walnuts1018/walnuts.dev:${{ github.sha }}-${{ github.run_number }}