Skip to content

Commit

Permalink
ci: fix deno publish
Browse files Browse the repository at this point in the history
  • Loading branch information
phaux committed May 15, 2024
1 parent 40e5a60 commit 8800683
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/deno-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ on:
types:
- published

permissions:
contents: read
id-token: write

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
Expand Down
10 changes: 7 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"name": "@smol/gram",
"compilerOptions": {
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true
Expand Down Expand Up @@ -30,10 +29,15 @@
}
},
"lock": false,
"name": "@smol/gram",
"publish": {
"exclude": [
"**/*.test.ts"
],
"include": [
"*.md",
"*.ts"
"deno.json",
"**/*.md",
"**/*.ts"
]
},
"tasks": {
Expand Down

0 comments on commit 8800683

Please sign in to comment.