Skip to content

refactor: use URLSearchParams instead of string concatenation (#69) #45

refactor: use URLSearchParams instead of string concatenation (#69)

refactor: use URLSearchParams instead of string concatenation (#69) #45

Workflow file for this run

name: Deploy
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Build step
run: "deno run -A src/routets.ts --no-watch --no-serve --write serve.gen.ts examples"
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "routets-examples"
entrypoint: "serve.gen.ts"