We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6faef5e commit 9685fc0Copy full SHA for 9685fc0
.github/workflows/oranda.yml
@@ -0,0 +1,29 @@
1
+name: Oranda
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ web:
8
+ name: Build oranda
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: write
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: actions-rs/toolchain@v1
15
+ with:
16
+ toolchain: stable
17
+ override: true
18
+ - name: Install and run oranda
19
+ run: |
20
+ curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/oranda/releases/latest/download/oranda-installer.sh | sh
21
+ oranda build
22
+ - name: Deploy oranda
23
+ uses: JamesIves/[email protected]
24
+ if: ${{ github.ref == 'refs/heads/master' }}
25
26
+ branch: gh-pages
27
+ folder: public
28
+ token: ${{ secrets.GITHUB_TOKEN }}
29
+ single-commit: true
0 commit comments