-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (49 loc) · 1.42 KB
/
node.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
name: Nodejs Image
on:
workflow_dispatch:
env:
DOCKER_REGISTRY: ghcr.io
IMAGE_NAME: ayaka-notes/image-cn/node
jobs:
clean-node-texlive:
runs-on: ubuntu-latest
steps:
- name: Delete 'untaged' containers
uses: snok/container-retention-policy@v2
with:
image-names: node/*,node
cut-off: 1 min ago UTC
account-type: org
org-name: ayaka-notes
untagged-only: true
token: ${{ secrets.ORGTOKEN }}
build-image:
runs-on: ubuntu-latest
needs: clean-node-texlive
strategy:
fail-fast: false
max-parallel: 3
matrix:
node-version: [18.18.2, 20.11.0]
name: Nodejs ${{ matrix.node-version }}
steps:
- name: "Checkout GitHub Action"
id: checkout
uses: actions/checkout@main
- name: "Login to GitHub Container Registry"
id: docker_login
uses: docker/[email protected]
with:
registry: ${{env.DOCKER_REGISTRY}}
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: ./node
file: ./node/Dockerfile
push: true
tags: ${{ env.DOCKER_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ matrix.node-version }}
# 参数
build-args: |
nodetag=${{ matrix.node-version }}