Skip to content

feat: Add multiple length support #109

feat: Add multiple length support

feat: Add multiple length support #109

Workflow file for this run

name: Build and Deploy
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: opentofu/setup-opentofu@v1
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Install
env:
PUBLIC_URL: /
run: |
npm ci
- name: "Set environment variables"
run: |
echo "VITE_RELEASE=${GITHUB_SHA:0:8}" >> $GITHUB_ENV
- name: Build
run: |
npm run build
echo "ordle-app.no" > dist/CNAME
- run: tofu init
- id: plan
run: tofu plan -no-color
env:
TF_VAR_cloudflare_api_token: ${{ secrets.TF_VAR_cloudflare_api_token }}
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deploy branch
- run: |
tofu state rm cloudflare_zone_settings_override.ssl_settings
tofu apply -auto-approve
env:
TF_VAR_cloudflare_api_token: ${{ secrets.TF_VAR_cloudflare_api_token }}