Skip to content

Commit

Permalink
Create deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rix1 committed Jan 9, 2024
1 parent 1bdb139 commit 7db999c
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish on Deno Deploy

on:
push:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read

steps:
- name: Clone repository
uses: actions/checkout@v4

- 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: rix1dotdev
import-map: "./deno.json"
entrypoint: serve.ts

2 comments on commit 7db999c

@vercel
Copy link

@vercel vercel bot commented on 7db999c Jan 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

physical-100 – ./apps/physical-100

physical-100-git-main-rix1.vercel.app
search-100.rix1.dev
rix1-physical-100.vercel.app
physical-100-rix1.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 7db999c Jan 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

doggo – ./apps/doggo

doggo-git-main-rix1.vercel.app
doggo-psi.vercel.app
doggo-rix1.vercel.app
doggo.rix1.dev

Please sign in to comment.