add todo from blog example #154
This file contains 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
name: Deploy to GitHub Pages manually | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
pull_request: | |
branches: | |
- 'disabled-main' | |
workflow_dispatch: | |
# Allow this job to clone the repo and create a page deployment | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# set env vars in Github settings here | |
env: | |
SITE_URL: 'https://nemanjam.github.io' | |
PLAUSIBLE_SCRIPT_URL: 'https://plausible.arm1.nemanjamitic.com/js/script.js' | |
PLAUSIBLE_DOMAIN: 'nemanjamitic.com' | |
jobs: | |
build-manual: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Print commit id, message and tag | |
run: | | |
git show -s --format='%h %s' | |
echo "github.ref -> {{ github.ref }}" | |
- name: Set up Node.js and Yarn | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22.9.0' | |
registry-url: 'https://registry.yarnpkg.com' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build nemanjam.github.io | |
run: yarn build | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./dist | |
deploy: | |
needs: build-manual | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |