We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cddd246 + 832e3fd commit ace5182Copy full SHA for ace5182
1 file changed
.github/workflows/kool-deploy.yml
@@ -0,0 +1,22 @@
1
+on:
2
+ release:
3
+ types: [ published ]
4
+
5
+jobs:
6
+ deploy:
7
+ name: Deploy
8
+ runs-on: ubuntu-latest
9
10
+ env:
11
+ KOOL_DEPLOY_DOMAIN: pdf.kool.dev
12
+ KOOL_API_TOKEN: ${{ secrets.KOOL_API_TOKEN }}
13
14
+ steps:
15
+ - name: Install Kool
16
+ uses: kool-dev/action@v1
17
18
+ - name: Checkout code
19
+ uses: actions/checkout@master
20
21
+ - name: Kool Deploy
22
+ run: kool deploy
0 commit comments