Skip to content

Commit

Permalink
Added pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTV12345 committed Sep 9, 2024
1 parent 668dc6c commit 708e158
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-web-infos.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
schedule:
- cron: "0 1 * * *"
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Download info.json
run: curl -o info.json https://static.etherpad.org/info.json
- name: Download plugins
run: curl -o plugins.json https://static.etherpad.org/plugins.json
- name: Put to assets
run: |
mkdir -p assets
mv info.json plugins.json assets/
- name: Upload artifact
uses: actions/[email protected]
with:
path: './assets'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 708e158

Please sign in to comment.