Skip to content

fix: fix pill right rounded #49

fix: fix pill right rounded

fix: fix pill right rounded #49

Workflow file for this run

name: Site Deploy
on:
push:
branches:
- "main"
paths:
- "src/**"
permissions:
contents: read
deployments: write
statuses: write
concurrency:
group: website-deploy-${{ github.ref }}
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node Environment
uses: ./.github/actions/setup-node
- name: Get results
run: |
git fetch origin
git checkout origin/results results.json adapters.json bots.json drivers.json plugins.json
mv -t public results.json adapters.json bots.json drivers.json plugins.json
- name: Build Website
run: pnpm build
- name: Get Branch Name
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
- name: Deploy to Netlify
uses: nwtgck/actions-netlify@v2
with:
publish-dir: "./dist"
production-deploy: true
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy ${{ env.BRANCH_NAME }}@${{ github.sha }}"
enable-commit-comment: false
alias: ${{ env.BRANCH_NAME }}
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}