Skip to content

build(deno): action to deploy using deno #1

build(deno): action to deploy using deno

build(deno): action to deploy using deno #1

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@v1
uses: denoland/setup-deno
with:
deno-version: v2.x
# Uncomment this step to verify the use of 'deno fmt' on each commit.
# - name: Verify formatting
# run: deno fmt --check
- name: Run install
run: deno install
- name: Run Build
run: deno run -A build
- name: Run Build
run: deno run -A build
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./dist/"
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