Skip to content

Commit

Permalink
chore(ci): remove Deno setup and use pnpm in publish Workflow
Browse files Browse the repository at this point in the history
The commit removes Deno setup from the Github actions workflow and replaces the use of Deno's publish command with pnpm. It also renames deno.json to jsr.json in keeping with the change from Deno to pnpm.
  • Loading branch information
hckhanh committed Mar 1, 2024
1 parent 1a53f52 commit 934eda6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Deno
uses: denoland/setup-deno@v1
- name: Install jq
uses: dcarbone/install-jq-action@v2
- name: Setup pnpm
Expand All @@ -48,4 +46,4 @@ jobs:
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Publish package to JSR
if: env.VERSION != '0.0.0-development'
run: deno publish
run: pnpm dlx jsr publish
File renamed without changes.

0 comments on commit 934eda6

Please sign in to comment.