Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thespamer authored Mar 26, 2023
1 parent 9a85cf0 commit d4c1bc9
Showing 1 changed file with 28 additions and 6 deletions.
34 changes: 28 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,40 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Install Dependencies Allowances
run: cd allowances; yarn install --frozen-lockfile

- name: Install Dependencies Dutchx_seller
run: cd dutchx_seller; yarn install --frozen-lockfile

- name: Install Dependencies Recrurring_transfers
run: cd recuring_transfers; yarn install --frozen-lockfile

- name: Build
run: yarn build
- name: Build Allowances
run: cd allowances; yarn build

- name: Build Dutchx_seller
run: cd dutchx_seller; yarn build

- name: Build Recrurring_transfers
run: cd recuring_transfers; yarn build

- name: Login to NPM
env:
NODE_AUTH_TOKEN: ${{secrets.NPMJS_TOKEN}}
run: echo "//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN}" >> ~/.npmrc

- name: Publish
- name: Publish Allowances
env:
NODE_AUTH_TOKEN: ${{secrets.NPMJS_TOKEN}}
run: cd allowances; npm publish

- name: Publish Dutchx_Seller
env:
NODE_AUTH_TOKEN: ${{secrets.NPMJS_TOKEN}}
run: cd dutchx_seller; npm publish

- name: Publish Recurring_Transfers
env:
NODE_AUTH_TOKEN: ${{secrets.NPMJS_TOKEN}}
run: npm publish
run: cd recuring_transfers; npm publish

0 comments on commit d4c1bc9

Please sign in to comment.