Skip to content

Update Patina Text and image (#48) #5

Update Patina Text and image (#48)

Update Patina Text and image (#48) #5

name: Release to Cloudflare Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write # for committing branch.
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "cfpages"
cancel-in-progress: false
jobs:
Cloudflare-Pages-Release:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # repo checkout
# Install Rust Nightly Toolchain, with Clippy & Rustfmt
- name: Install nightly Rust
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
- name: Add WASM target
run: rustup target add wasm32-unknown-unknown
- name: lint
run: cargo clippy & cargo fmt --check
# If using tailwind...
# - name: Download and install tailwindcss binary
# run: npm install -D tailwindcss && npx tailwindcss -i <INPUT/PATH.css> -o <OUTPUT/PATH.css> # run tailwind
- name: Download and install Trunk binary
run: wget -qO- https://github.com/trunk-rs/trunk/releases/download/v0.21.14/trunk-x86_64-unknown-linux-gnu.tar.gz | tar -xzf-
- name: Build with Trunk
# "${GITHUB_REPOSITORY#*/}" evaluates into the name of the repository
# using --public-url something will allow trunk to modify all the href
# paths like from favicon.ico to repo_name/favicon.ico . this is
# necessary for github pages where the site is deployed to
# username.github.io/repo_name and all files must be requested
# relatively as favicon.ico. if we skip public-url option, the href
# paths will instead request username.github.io/favicon.ico which will
# obviously return error 404 not found.
run: ./trunk build --release
# Deploy
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }}
directory: './dist'
# Optional: Enable this if you want to have GitHub Deployments triggered
# gitHubToken: ${{ secrets.GH_TOKEN }}