Skip to content

Added disclaimer about third party discord clients (#288) #92

Added disclaimer about third party discord clients (#288)

Added disclaimer about third party discord clients (#288) #92

Workflow file for this run

name: Deploy API
on:
workflow_dispatch:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
api:
- 'apps/api/**'
- uses: pnpm/action-setup@v3
if: steps.changes.outputs.api == 'true' && ${{ github.event_name }}" != "workflow_dispatch"

Check warning on line 22 in .github/workflows/deploy-api.yaml

View workflow run for this annotation

GitHub Actions / Deploy API

Workflow syntax warning

.github/workflows/deploy-api.yaml (Line: 22, Col: 13): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
with:
version: 9
- name: Remove types package
run: pnpm uninstall @types/github-script
- name: Deploy
if: steps.changes.outputs.api == 'true' && ${{ github.event_name }}" != "workflow_dispatch"

Check warning on line 28 in .github/workflows/deploy-api.yaml

View workflow run for this annotation

GitHub Actions / Deploy API

Workflow syntax warning

.github/workflows/deploy-api.yaml (Line: 28, Col: 13): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
uses: cloudflare/wrangler-action@v3
with:
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
workingDirectory: apps/api
packageManager: pnpm