Skip to content

Commit

Permalink
💚 fixed ci
Browse files Browse the repository at this point in the history
  • Loading branch information
aexol committed May 5, 2023
1 parent ce6d54b commit 43c4159
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: Release
on:
push:
tags:
Expand All @@ -7,16 +8,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v1
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build --ws
- run: echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" >> ~/.npmrc
- run: npm run build --ws --if-present
- run: npm publish -w gei-users --access public --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- run: npm publish -w graphql-editor-worker --access public --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- run: npm publish -w gei-rest --access public --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- run: npm publish -w gei-s3 --access public --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.env
lib
node_modules
.graphql-editor-auth.json
.graphql-editor-auth.json
tsconfig.tsbuildinfo
1 change: 0 additions & 1 deletion packages/integrations/gei-rest/tsconfig.tsbuildinfo

This file was deleted.

1 change: 0 additions & 1 deletion packages/integrations/gei-s3/tsconfig.tsbuildinfo

This file was deleted.

1 change: 0 additions & 1 deletion packages/integrations/gei-stripe/tsconfig.tsbuildinfo

This file was deleted.

1 change: 0 additions & 1 deletion packages/integrations/gei-users/tsconfig.tsbuildinfo

This file was deleted.

0 comments on commit 43c4159

Please sign in to comment.