We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e95f33 commit 283ff36Copy full SHA for 283ff36
.github/workflows/deploy.yml
@@ -10,7 +10,7 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- name: Checkout
13
- uses: actions/checkout@v4 # Update to latest version
+ uses: actions/checkout@v4
14
15
- name: Configure Git
16
run: |
@@ -28,8 +28,10 @@ jobs:
28
29
- name: Build
30
run: npm run build
31
- # Removed sensitive environment variables to prevent them from being embedded into the build.
32
- # If your app can work without authentication (using unauthenticated API requests), this is safe.
+
+ # Add the CNAME file to the build output
33
+ - name: Create CNAME file
34
+ run: echo "digindominic.me" > ./build/CNAME
35
36
- name: Deploy
37
uses: peaceiris/actions-gh-pages@v3
0 commit comments