-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip * Update package.json * Update package.json * Update package.json * Update LICENSE * wip * wip: organize configs * wip: organize index files * wip: check exports * docs(changeset): The MVP version of KoalaTs * docs(changeset): The MVP of KoalaTs * wip: changeset * Update README.md * Update package.json * docs(changeset): The first MVP of KoalaTS * Update package.json * RELEASING: Releasing 1 package(s) Releases: @koala/[email protected] [skip ci] * Update package.json * Update package.json * Update package.json * Update README.md * Update package.json * Update package.json * docs(changeset): Fix dependencies * RELEASING: Releasing 1 package(s) Releases: @koala-ts/[email protected] [skip ci] * remove changeset * Update package.json * Create publish.yml * Update publish.yml * Update publish.yml * Update publish.yml
- Loading branch information
Showing
14 changed files
with
735 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Publish | ||
|
||
on: | ||
release: | ||
types: [ published ] | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '22' | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build the package | ||
run: npm run build | ||
|
||
- name: Publish to npm | ||
run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.