Skip to content

Commit

Permalink
new CI
Browse files Browse the repository at this point in the history
  • Loading branch information
johnstonmatt committed Jun 11, 2024
1 parent 4cd55a6 commit 9947319
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build-then-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Then Release
on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- uses: setup-deno@v2
with:
deno-version: v1.44
- uses: actions/checkout@v4
- name: Build
run: deno task build
- name: Publish package
run: deno publish

0 comments on commit 9947319

Please sign in to comment.