1

Fix up CI for deployments

This commit is contained in:
Evan Pratten 2024-10-25 15:55:30 -04:00
parent 419425c8f2
commit 0209318904
3 changed files with 8 additions and 50 deletions

View File

@ -1,23 +1,9 @@
name: Build & Deploy Site
name: Deploy ewpratten.com
on:
push:
jobs:
workflow_note:
name: Workflow Note
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Add a note with info about this workflow
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git fetch origin "refs/notes/*:refs/notes/*"
git notes append -m "GH-Actions-Workflow-Run: ${{github.server_url}}/${{github.repository}}/actions/runs/${{github.run_id}}"
git push origin "refs/notes/*:refs/notes/*"
build_dev:
name: Development Build
@ -38,19 +24,10 @@ jobs:
- name: Build only
uses: shalzz/zola-deploy-action@v0.19.1
env:
BUILD_DIR: ./ewpratten.com
BUILD_ONLY: true
BUILD_FLAGS: --drafts
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ewpratten
directory: public
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
wranglerVersion: '2'
build_prod:
name: Production Build
if: github.ref == 'refs/heads/master'
@ -70,6 +47,7 @@ jobs:
- name: Build only
uses: shalzz/zola-deploy-action@v0.19.1
env:
BUILD_DIR: ./ewpratten.com
BUILD_ONLY: true
- name: Publish to Cloudflare Pages

2
.gitignore vendored
View File

@ -9,7 +9,7 @@ Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
/public/
/*/public/
/node_modules/

28
.vscode/tasks.json vendored
View File

@ -4,9 +4,12 @@
"version": "2.0.0",
"tasks": [
{
"label": "Launch development webserver",
"label": "Launch development webserver (ewpratten.com)",
"type": "shell",
"command": "zola",
"options": {
"cwd": "${workspaceFolder}/ewpratten.com"
},
"args": [
"serve",
"--drafts",
@ -15,29 +18,6 @@
"--open"
],
"problemMatcher": []
},
{
"label": "Launch development webserver (without drafts)",
"type": "shell",
"command": "zola",
"args": [
"serve",
"--interface",
"0.0.0.0",
"--open"
],
"problemMatcher": []
},
{
"label": "Initialize Python venv",
"type": "shell",
"command": "python3",
"args": [
"-m",
"venv",
".venv"
],
"problemMatcher": []
}
]
}