Skip to content

Commit

Permalink
jsr publish; 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
johnstonmatt committed Mar 29, 2024
1 parent ab0efde commit 29f6d0c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish
on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- name: Check formatting
run: deno fmt --check

- name: Lint
run: deno lint

- name: Test
run: deno task test

- name: Publish package
run: npx jsr publish
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
7 changes: 6 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"name": "@polyseam/inflate-response",
"version": "1.1.1",
"version": "1.1.2",
"exports": "./mod.ts",
"tasks": {
"dev": "deno run --watch main.ts",
"test": "deno test -A"
},
"exclude": [
"test",
".vscode",
".github"
],
"imports": {
"@std/path": "jsr:@std/[email protected]",
"@std/archive": "jsr:@std/[email protected]",
Expand Down

0 comments on commit 29f6d0c

Please sign in to comment.