Skip to content

Commit

Permalink
build(deno): action to deploy using deno
Browse files Browse the repository at this point in the history
  • Loading branch information
Indyandie committed Oct 21, 2024
1 parent f4a6c23 commit f3aa7ed
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# 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

0 comments on commit f3aa7ed

Please sign in to comment.