-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (43 loc) · 1.21 KB
/
build.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
name: Docker
on:
push:
tags:
- 'v*'
env:
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Set .npmrc
run: |
echo '@tiptap-pro:registry=https://registry.tiptap.dev/' > .npmrc
echo '//registry.tiptap.dev/:_authToken="${{ secrets.TIPTAP_TOKEN }}"' >> .npmrc
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to yiwen-ai registry
uses: docker/login-action@v2
with:
registry: ${{ secrets.CR_REGISTRY }}
username: ${{ secrets.CR_USERNAME }}
password: ${{ secrets.CR_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ secrets.CR_REGISTRY }}/ywweb/webscraper
tags: |
type=semver,pattern={{raw}}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}