Skip to content

more tweaking of the features section #95

more tweaking of the features section

more tweaking of the features section #95

Workflow file for this run

name: deploy
on:
push:
branches: main
pull_request:
branches: main
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@v1
with:
deno-version: canary
- name: Build step
run: deno task build
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "denopaste"
entrypoint: "./main.ts"
root: "."