Skip to content

Commit 0e3f241

Browse files
chore: try to fix release from CI
1 parent de48914 commit 0e3f241

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1+
name: 🚀 Release
2+
13
on:
24
workflow_dispatch:
35
inputs:
46
increment:
57
type: choice
68
options:
7-
- major
8-
- minor
99
- patch
10+
- minor
11+
- major
1012

1113
jobs:
1214
release:
13-
name: 🚀 Release
15+
name: Release
1416
runs-on: ubuntu-latest
1517
timeout-minutes: 15
1618

@@ -29,6 +31,10 @@ jobs:
2931
git config user.name "${GITHUB_ACTOR}"
3032
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
3133
34+
- name: npm config
35+
run: |
36+
npm config set --global //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
37+
3238
- name: Install dependencies
3339
run: yarn --frozen-lockfile
3440

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@
2323
"@bam.tech/react-native-app-security",
2424
"RNAS"
2525
],
26-
"repository": "https://github.com/bamlab/react-native-app-security",
26+
"repository": {
27+
"type": "git",
28+
"url": "git+https://github.com/bamlab/react-native-app-security.git"
29+
},
2730
"bugs": {
2831
"url": "https://github.com/bamlab/react-native-app-security/issues"
2932
},

0 commit comments

Comments
 (0)