feat: add qr to site list #38
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 Ephemurl Site | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "apps/site/**" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
ADAPTER: cloudflare | |
permissions: | |
contents: read | |
deployments: write | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup pnpm 🏗 | |
uses: pnpm/action-setup@v4 | |
- name: Install dependencies | |
run: pnpm install --filter ./apps/site --filter ./shared/* | |
- name: Build utils | |
run: pnpm utils build | |
- name: Build site | |
run: pnpm site build | |
- name: Deploy to cloudflare | |
run: pnpx wrangler pages deploy ./apps/site/dist --project-name=ephemurl-site --commit-dirty=true | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
- name: Log in to docker hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_ACCESS_TOKEN }} | |
- name: Build docker image | |
run: docker build . -f ./Dockerfile.ci --build-arg APP=site -t jacobshuman/ephemurl-site:latest | |
- name: Push docker image | |
run: docker push jacobshuman/ephemurl-site:latest |