Skip to content

Implemented lang redirect #7

Implemented lang redirect

Implemented lang redirect #7

Workflow file for this run

name: Deploy
on: push
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write # This is required to allow the GitHub Action to authenticate with Deno Deploy.
contents: read
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Setup Deno environment
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Build site
run: deno task build
- name: Deploy to Deno Deploy
uses: denoland/deployctl@v1
with:
project: jgabrielgruber-dev # the name of the project on Deno Deploy
entrypoint: https://deno.land/[email protected]/http/file_server.ts # the entrypoint to deploy
root: ./_site