-
Notifications
You must be signed in to change notification settings - Fork 45
126 lines (126 loc) · 3.93 KB
/
proxy.yml
File metadata and controls
126 lines (126 loc) · 3.93 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: Proxy
on:
push:
branches:
- main
paths:
- 'proxy/*'
- 'proxy/**/*'
- '!proxy/*.md'
- 'pnpm-lock.yaml'
- '.github/workflows/proxy.yml'
- '.github/actions/init-node/action.yml'
pull_request:
paths:
- 'proxy/*'
- 'proxy/**/*'
- '!proxy/*.md'
- 'pnpm-lock.yaml'
- '.github/workflows/proxy.yml'
- '.github/actions/init-node/action.yml'
jobs:
test:
name: Proxy Test
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Harden the runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: block
allowed-endpoints: >
api.github.com:443
github.com:443
nodejs.org:443
release-assets.githubusercontent.com:443
objects.githubusercontent.com:443
registry.npmjs.org:443
- name: Checkout the repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Initialize Node.js
uses: ./.github/actions/init-node
- name: Run tests
run: cd proxy && pnpm test
build:
name: Proxy Build
if: github.ref == 'refs/heads/main'
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Harden the runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: block
allowed-endpoints: >
api.github.com:443
github.com:443
nodejs.org:443
objects.githubusercontent.com:443
registry.npmjs.org:443
release-assets.githubusercontent.com:443
- name: Checkout the repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Initialize Node.js
uses: ./.github/actions/init-node
with:
cache: false
install: -F proxy --prod
- name: Build server
run: cd proxy && node --run build
- name: Create archive to keep symlinks
run: tar -cf proxy.tar proxy/dist/
- name: Upload proxy build
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: proxy-build-${{ github.sha }}
retention-days: 1
include-hidden-files: true
path: |
./proxy.tar
staging:
name: Proxy Staging Deploy
needs:
- test
- build
if: github.ref == 'refs/heads/main'
permissions:
contents: read
packages: write
concurrency:
group: staging-proxy
runs-on: ubuntu-latest
steps:
- name: Harden the runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: block
allowed-endpoints: >
9236a389bd48b984df91adc1bc924620.r2.cloudflarestorage.com:443
api.github.com:443
apk.cgr.dev:443
cgr.dev:443
github.com:443
nodejs.org:443
raw.githubusercontent.com:443
ghcr.io:443
pkg-containers.githubusercontent.com:443
cloud.hplush.dev:443
- name: Checkout the repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Download web assets from test step
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
with:
name: proxy-build-${{ github.sha }}
path: ./
- name: Extract archive to restore symlinks
run: tar -xf proxy.tar
- name: Deploy
uses: ./.github/actions/deploy
with:
image-name: slowreader-proxy
context: ./proxy/
application-id: xZtJmL3JYQb0-4nBulOvn
token: ${{ secrets.GITHUB_TOKEN }}
dokploy-token: ${{ secrets.DOKPLOY_TOKEN }}