We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec62d76 commit fdbfcc4Copy full SHA for fdbfcc4
.github/workflows/main.yaml
@@ -20,9 +20,7 @@ jobs:
20
run: |
21
npm ci
22
npm run minify
23
- - name: Deploy artifact
24
- uses: JamesIves/github-pages-deploy-action@releases/v4
25
- with:
26
- folder: dist/
27
- branch: pages
28
- single-commit: true
+ - name: Upload website to Grebedoc
+ run: |
+ set -o pipefail
+ tar -C dist -c . | zstd -T0 -1 | curl https://webusb.glasgow-embedded.org/ -X PUT -H "Authorization: Pages ${{ secrets.GREBEDOC_TOKEN }}" -H "Content-Type: application/x-tar+zstd" -T -
0 commit comments