We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73c7b2e commit 5d44741Copy full SHA for 5d44741
2 files changed
.github/workflows/docker.yaml
@@ -1,5 +1,5 @@
1
---
2
-name: Build Docker images
+name: Build Docker Images
3
concurrency:
4
cancel-in-progress: true
5
group: ${{ github.workflow }}-${{ github.ref }}
.github/workflows/docs.yaml
@@ -0,0 +1,22 @@
+---
+name: Deploy Docs
+on:
+ push:
+ branches:
6
+ - main
7
+ paths:
8
+ - "docs/**"
9
+ - "README.md"
10
+ - "CONTRIBUTING.md"
11
+permissions: {}
12
+concurrency:
13
+ group: ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress: true
15
+jobs:
16
+ deploy:
17
+ runs-on: ubuntu-slim
18
+ steps:
19
+ - name: Trigger website deployment
20
+ env:
21
+ GH_TOKEN: ${{ secrets.WEBSITE_DEPLOY_TOKEN }}
22
+ run: gh api repos/dunglas/frankenphp-website/actions/workflows/hugo.yaml/dispatches -f ref=main
0 commit comments