Skip to content

fix(deno): remove broken step (test) #2

fix(deno): remove broken step (test)

fix(deno): remove broken step (test) #2

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# For more information see: https://github.com/denoland/setup-deno
name: Deno
on:
push:
branches: ["deno"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno
with:
deno-version: v2.x
- name: Run install
run: deno install
- name: Run Build
run: deno run -A build
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment