π Deploying a Blog with GitHub Actions, Docker, and Submodules
π Problem Statement
If youβre using GitHub Actions to build and deploy a static blog that:
- Runs inside Docker
- Pushes generated content to a GitHub Pages submodule
- Requires Git authentication to commit and push changes
Then, you might run into permission issues, especially when pushing to submodules.
This guide walks you through setting up GitHub Actions to automatically deploy your blog without permission errors.
β Step 1: Set Up a GitHub Personal Access Token (PAT)
GitHubβs default GITHUB_TOKEN
cannot push to repositories requiring extra permissions (like GitHub Pages). You need a Personal Access Token (PAT).
π₯ Generate a PAT
- Go to GitHub Settings β Developer Settings β Personal Access Tokens β Fine-grained tokens
- Click “Generate new token”
- Set Expiration: Recommended No Expiration
- Repository access: Select both repositories (your main repo and GitHub Pages repo)
- Permissions:
- β
Contents: Read & Write
- β
Workflows: Read & Write
- β
- Click Generate Token and copy the token
π₯ Add GH_PAT
to GitHub Secrets
- Go to GitHub Repo β Settings β Secrets and Variables β Actions
- Click New repository secret
- Name it
GH_PAT
- Paste the copied token
- Repeat steps for each submodule repository that requires access.
β Step 2: Configure GitHub Actions Workflow
Create .github/workflows/deploy.yml
:
name: Deploy Blog
on:
push:
branches:
- main # Adjust if needed
workflow_dispatch: # Allows manual triggering
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true # Ensures submodules are initialized and updated
fetch-depth: 0
token: ${{ secrets.GH_PAT }} # π₯ Ensures submodules use PAT
- name: Submodule cleanup fix # Bodge for https://github.com/actions/checkout/issues/358
run: |
git submodule foreach --recursive git clean -ffdx
git submodule foreach --recursive git reset --hard
git submodule foreach --recursive git checkout -f master
- name: Run docker compose
run: docker compose up blog
- uses: stefanzweifel/git-auto-commit-action@v5
with:
repository: public
branch: master # Adjust if needed
push_options: --force
create_branch: false
β Step 3: Push and Test
- Commit and push changes
git add . git commit -m "Set up GitHub Actions deployment" git push origin main
- Trigger the workflow manually (optional) from GitHub Actions.
- Check GitHub Actions logs for errors.
π― Summary
β
Use a GitHub PAT instead of GITHUB_TOKEN
for pushing to submodules.
β
Pass the PAT token in actions/checkout@v4
.
β
Set Git credentials in deploy.sh
.
β
Update submodule remote URLs before pushing.
Now, your blog should auto-deploy whenever you push changes! π
Need help? Drop a comment below! π