Skip to content

Commit

Permalink
feat: publish from GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
raisedadead committed Apr 2, 2024
1 parent 1ff8bba commit 83dbb01
Show file tree
Hide file tree
Showing 4 changed files with 126 additions and 19 deletions.
113 changes: 113 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
name: Publish

on:
push:
branches:
- main
- live
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:

jobs:
lint:
name: Lint
uses: ./.github/workflows/re-lint.yml

# test:

build:
name: Build
runs-on: ubuntu-latest
# needs: test

env:
CI: true

strategy:
matrix:
node-version: [20.x]

steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 8
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
path: |
${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
- name: Build
run: |
pnpm build
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: site
path: dist

deploy:
if: github.event_name == 'pull_request'
name: Deploy
runs-on: ubuntu-latest
needs: build
environment:
name: cloudflare-pages

steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: site
path: dist

- name: Publish to Cloudflare Pages
id: 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
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
# Optional: Change the Wrangler version
wranglerVersion: '3'

- name: Notify
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Deployed to Cloudflare Pages. Preview: https://${{ steps.cloudflare-pages.outputs.url }}'
})
29 changes: 10 additions & 19 deletions .github/workflows/build.yml → .github/workflows/re-lint.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
name: Build Check
# This is a reusable workflow that can be called from other workflows
name: Lint

on:
push:
branches:
- main
- live
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
on: [workflow_call]

jobs:
# lint:
# test:
build:
name: Build
lint:
name: Lint
runs-on: ubuntu-latest
# needs: test

env:
CI: true
Expand All @@ -36,9 +27,6 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 8
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
Expand All @@ -59,6 +47,9 @@ jobs:
run: |
pnpm install --frozen-lockfile
- name: Build
- name: Install dependencies and lint
run: |
pnpm build
pnpm install
pnpm lint
env:
CI: true
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
engine-strict=true
enable-pre-post-scripts=true
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.12.0

0 comments on commit 83dbb01

Please sign in to comment.