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 e538c00 commit 511f192Copy full SHA for 511f192
.github/workflows/pages.yml
@@ -0,0 +1,18 @@
1
+on:
2
+ push:
3
+ branches: [main]
4
+ workflow_dispatch:
5
+
6
+name: Pages
7
+jobs:
8
+ pages:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Check out content
12
+ uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 0
15
+ - name: Upload pages to Grebedoc
16
+ run: |
17
+ set -o pipefail
18
+ tar c * | zstd | curl https://amaranth-lang.org/ -X PUT -H "Authorization: Pages ${{ secrets.GREBEDOC_TOKEN }}" -H "Content-Type: application/x-tar+zstd" -T -
0 commit comments