Skip to content

Commit

Permalink
Create publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
carlrafting committed Mar 23, 2024
1 parent 0edcb3f commit bd25b60
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Publish
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- name: Setup Deno
# You may pin to the exact commit or the version.
# uses: denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba
uses: denoland/setup-deno@v1.1.4
# with:
# The Deno version to install. Can be a semver version of a stable release, "canary" for the latest canary, or the Git hash of a specific canary release.
# deno-version: # optional, default is 1.x


- name: Publish package
run: deno publish

0 comments on commit bd25b60

Please sign in to comment.