Disable default GitHub Pages workflow to avoid conflicts with custom … #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file disables the default GitHub Pages workflow | |
# We're using our custom deploy.yml workflow instead | |
name: Disabled Pages Build and Deployment | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Skip build | |
run: echo "Skipping default pages build - using custom deploy workflow" |