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 71a7facCopy full SHA for 71a7fac
.github/workflows/pages.yml
@@ -0,0 +1,17 @@
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 source code
12
+ uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 0
15
+ - name: Upload Pages artifact
16
+ run: |
17
+ tar c * | curl https://amaranth-lang.org/ -X PUT -H "Authorization: Pages ${{ secrets.GREBEDOC_TOKEN }}" -H "Content-Type: application/x-tar"
0 commit comments