Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonjgardner committed Jan 30, 2024
2 parents 4c4c88b + b64ac49 commit b666278
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Deno Deploy

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

permissions:
id-token: write
contents: read

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Setup repo
uses: actions/checkout@v3

- name: Setup Deno
# uses: denoland/setup-deno@v1
uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.2
with:
deno-version: v1.x
- name: Setup
run: |
deno install -qAf https://deno.land/x/[email protected]/cli.ts
packup -v
packup build ./public/index.html
- name: Deploy to Deno Deploy
uses: denoland/[email protected]
with:
project: mcstructure
entrypoint: main.ts

0 comments on commit b666278

Please sign in to comment.