We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27ff6b4 commit 2a8485dCopy full SHA for 2a8485d
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,18 @@
+---
+name: Deploy Docs
+on:
+ push:
+ branches:
6
+ - main
7
+ paths:
8
+ - "docs/**"
9
+ - "README.md"
10
+ - "CONTRIBUTING.md"
11
+jobs:
12
+ deploy:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Trigger website deployment
16
+ env:
17
+ GH_TOKEN: ${{ secrets.WEBSITE_DEPLOY_TOKEN }}
18
+ run: gh api repos/dunglas/frankenphp-website/actions/workflows/hugo.yaml/dispatches -f ref=main
0 commit comments