forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (65 loc) · 2.05 KB
/
docker-test.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: PR - Docker build test
on:
pull_request:
branches:
- master
paths:
- '.github/workflows/docker-test.yml'
- 'lib/**'
- 'Dockerfile'
- 'package.json'
- 'pnpm-lock.yaml'
types: [opened, reopened, synchronize, edited]
# Please, always create a pull request instead of push to master.
concurrency:
group: docker-test-${{ github.ref_name }}
cancel-in-progress: true
jobs:
test:
name: Docker build & tests
permissions:
pull-requests: write
attestations: write
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx # needed by `cache-from`
uses: docker/setup-buildx-action@v3
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: rsshub
flavor: latest=true
- name: Build Docker image
uses: docker/build-push-action@v6
with:
context: .
build-args: PUPPETEER_SKIP_DOWNLOAD=0 # also test bundling Chromium
load: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64 # explicit
cache-from: |
type=registry,ref=${{ secrets.DOCKER_USERNAME }}/rsshub:chromium-bundled
type=gha,scope=docker-release
- name: Pull Request Labeler
if: ${{ failure() }}
uses: actions-cool/issues-helper@v3
with:
actions: 'add-labels'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.pull_request.number }}
labels: 'Auto: Route Test Failed'
- name: Test Docker image
run: bash scripts/docker/test-docker.sh
- name: Export Docker image
run: docker save rsshub:latest | zstdmt -o rsshub.tar.zst
- name: Upload Docker image
uses: actions/upload-artifact@v4
with:
name: docker-image
path: rsshub.tar.zst
retention-days: 1