Skip to content

Commit 283ff36

Browse files
author
digin
committed
pushed to custom domain
1 parent 5e95f33 commit 283ff36

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/deploy.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4 # Update to latest version
13+
uses: actions/checkout@v4
1414

1515
- name: Configure Git
1616
run: |
@@ -28,8 +28,10 @@ jobs:
2828

2929
- name: Build
3030
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.
31+
32+
# Add the CNAME file to the build output
33+
- name: Create CNAME file
34+
run: echo "digindominic.me" > ./build/CNAME
3335

3436
- name: Deploy
3537
uses: peaceiris/actions-gh-pages@v3

0 commit comments

Comments
 (0)