Skip to content

Commit

Permalink
👷 ci: Updating release to use something different
Browse files Browse the repository at this point in the history
  • Loading branch information
joebobmiles committed Jul 13, 2021
1 parent e914483 commit 23426d1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- run: npm run build

- run: npx semantic-release
- run: npx semantic-release --dry-run
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
21 changes: 19 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,27 @@
}
],
"plugins": [
"semantic-release-config-gitmoji",
[
"@semantic-release/commit-analyzer",
{
"config": "conventional-changelog-gitmoji-config"
}
],
[
"@semantic-release/release-notes-generator",
{
"config": "conventional-changelog-gitmoji-config"
}
],
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
[
"@semantic-release/git",
{
"assets": [ "package.json" ],
"message": ":bookmark: chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
import * as Y from "yjs";
import { patchSharedType, patchStore, } from "./patching";


/**
* This function is the middleware the sets up the Zustand store to mirror state
* into a Yjs store for peer-to-peer synchronization.
Expand Down

0 comments on commit 23426d1

Please sign in to comment.