Skip to content

Commit 0eda8c1

Browse files
authored
Merge pull request #221 from meilisearch/fix-publish
Fix publishing, le retour
2 parents f84f3e3 + 42a2db3 commit 0eda8c1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
if: "!github.event.release.prerelease && !contains(github.ref, 'beta')"
3131
run: |
3232
cd functions
33-
npm publish .
33+
npm publish
3434
- name: Publish with beta tag
3535
if: "github.event.release.prerelease && contains(github.ref, 'beta')"
3636
run: |
3737
cd functions
38-
npm publish . --tag beta
38+
npm publish --tag beta

functions/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"name": "firestore-meilisearch",
33
"version": "0.3.3",
4+
"repository": {
5+
"type": "git",
6+
"url": "https://github.com/meilisearch/firestore-meilisearch"
7+
},
48
"scripts": {
59
"lint": "eslint .",
610
"lint:fix": "eslint . --fix",

0 commit comments

Comments
 (0)