We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b093296 commit 038e15aCopy full SHA for 038e15a
.github/workflows/build-ui.yml
@@ -60,6 +60,14 @@ jobs:
60
env:
61
NODE_ENV: production
62
NEXT_PUBLIC_API_URL: https://static.etherpad.org
63
+ - name: Download info.json
64
+ run: curl -o info.json https://static.etherpad.org/info.json
65
+ - name: Download plugins
66
+ run: curl -o plugins.json https://static.etherpad.org/plugins.json
67
+ - name: Put to assets
68
+ run: |
69
+ mkdir -p dist/assets
70
+ mv info.json plugins.json dist/assets
71
- name: Upload artifact
72
uses: actions/upload-pages-artifact@v3
73
with:
.github/workflows/build-web-infos.yml
0 commit comments