-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat (3.4.0): add platform option, Android and BSD platforms (#421)
* feat: add platform option, Android platform Signed-off-by: K.B.Dharun Krishna <[email protected]> * feat/test: update code, add alias for old options Signed-off-by: K.B.Dharun Krishna <[email protected]> * feat: rename platform lib to platforms Signed-off-by: K.B.Dharun Krishna <[email protected]> * Update bin/tldr Co-authored-by: Matthew Peveler <[email protected]> * feat: add support for OpenBSD and update code Signed-off-by: K.B.Dharun Krishna <[email protected]> * fix: add back updated platform options Signed-off-by: K.B.Dharun Krishna <[email protected]> * cleanup: update files Signed-off-by: K.B.Dharun Krishna <[email protected]> * Update bin/completion/bash/tldr Co-authored-by: Matthew Peveler <[email protected]> * feat: add support for FreeBSD and NetBSD Signed-off-by: K.B.Dharun Krishna <[email protected]> * cleanup: rearrange options, prepare for 3.4.0 Signed-off-by: K.B.Dharun Krishna <[email protected]> * README: minor fixes Signed-off-by: K.B.Dharun Krishna <[email protected]> * Fix URL-encoded email highlighting Signed-off-by: K.B.Dharun Krishna <[email protected]> * cleanup: add release CI, drop Node 14 support Signed-off-by: K.B.Dharun Krishna <[email protected]> * cleanup: remove not working alias option Signed-off-by: K.B.Dharun Krishna <[email protected]> --------- Signed-off-by: K.B.Dharun Krishna <[email protected]> Co-authored-by: Matthew Peveler <[email protected]>
- Loading branch information
1 parent
97bd716
commit 98de9cb
Showing
19 changed files
with
261 additions
and
159 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,24 @@ | ||
# This workflow automatically publishes the package to NPM when a new release is created. | ||
# Before, creating a new release, make sure to update the package version in package.json | ||
# and add a Granular Access Token (with read and write packages scope) | ||
# to the repository secrets with the name NPM_TOKEN. | ||
# Once, the release has been published remove it from the repository secrets. | ||
|
||
name: Publish Package to NPM | ||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
# Setup .npmrc file to publish to npm | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm ci | ||
- 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
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
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
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.