Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates env secret name #87

Merged
merged 19 commits into from
Mar 22, 2023
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9d3cab4
chore: removes unused ci files
cb-haripriyan Mar 9, 2023
37275ab
ci: adds github workflow for build
cb-haripriyan Mar 14, 2023
55776ae
build: changes package.json to current npm version
cb-haripriyan Mar 14, 2023
5cc7934
build: adds empty changelog
cb-haripriyan Mar 14, 2023
c9d6d31
build: updates build file
cb-haripriyan Mar 15, 2023
e685857
build: ignores npmrc
cb-haripriyan Mar 15, 2023
760c993
build: adds github action for release
cb-haripriyan Mar 15, 2023
fe67e84
Merge pull request #79 from cb-haripriyan/release-prep
cb-haripriyan Mar 15, 2023
ddc62be
Merge pull request #80 from chargebee/release-prep
cb-haripriyan Mar 22, 2023
c62f828
docs: updates readme installation instruction
cb-haripriyan Mar 22, 2023
958ea53
Merge pull request #82 from cb-haripriyan/supporting-iap
cb-haripriyan Mar 22, 2023
7974c2c
chore: runs release in dry-run mode for test
cb-haripriyan Mar 22, 2023
6ca8ba0
Merge pull request #83 from cb-haripriyan/supporting-iap
cb-haripriyan Mar 22, 2023
184cfc1
build: updates environment for release
cb-haripriyan Mar 22, 2023
7e62e0f
Merge pull request #84 from cb-haripriyan/supporting-iap
cb-haripriyan Mar 22, 2023
fc28099
Merge branch 'next' of github.com:chargebee/chargebee-react-native in…
cb-haripriyan Mar 22, 2023
dee511c
Merge pull request #85 from cb-haripriyan/supporting-iap
cb-haripriyan Mar 22, 2023
32c9420
Merge branch 'next' of github.com:chargebee/chargebee-react-native in…
cb-haripriyan Mar 22, 2023
5a04b78
build: updates env prop for release
cb-haripriyan Mar 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@ jobs:
npm config set registry https://registry.npmjs.com/
npm config set //registry.npmjs.com/:_authToken=$NPM_TOKEN
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.RN_NPM_WRITE_TOKEN }}
- name: Yarn Tests
run: yarn test
- name: Pre-Release package
if: github.ref == 'refs/heads/next'
run: yarn release --ci --preRelease=beta --dry-run
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.RN_NPM_WRITE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release package
if: github.ref == 'refs/heads/master'
run: yarn release --ci
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.RN_NPM_WRITE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}