Skip to content

Commit

Permalink
Merge branch 'tubi/master' into tubi/search-keys
Browse files Browse the repository at this point in the history
  • Loading branch information
springuper authored Nov 30, 2022
2 parents 81d11b7 + 49068ef commit f974713
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Publish package to GitHub Packages
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '14.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@adrise'
- run: yarn --frozen-lockfile
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"files": [
"dist"
],
"version": "6.6.2-beta.1",
"version": "6.6.2-beta.7",
"description": "Lightweight fuzzy-search",
"license": "Apache-2.0",
"repository": {
Expand Down

0 comments on commit f974713

Please sign in to comment.