Skip to content

Commit

Permalink
fix: rm double develop fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiter committed Jul 20, 2021
1 parent 5fbe766 commit d2b5ac8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Expand Up @@ -32,7 +32,6 @@ jobs:
run: |
git reset --hard
git fetch origin master:master
git fetch origin develop:develop
- name: Set npm credentials
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> $HOME/.npmrc
Expand All @@ -48,6 +47,9 @@ jobs:

- name: Deploy on develop branch
if: github.ref == 'refs/heads/develop'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

- name: Deploy on master branch
Expand Down
2 changes: 0 additions & 2 deletions src/iam.ts
Expand Up @@ -486,8 +486,6 @@ export class IAM extends IAMBase {
*
*/
async issuePublicClaim({ token, publicClaim }: { token?: string, publicClaim?: IPublicClaim }) {
console.log(publicClaim, token);

if (this._issuerClaims) {
if (publicClaim) {
return this._issuerClaims.issuePublicClaim(publicClaim);
Expand Down

0 comments on commit d2b5ac8

Please sign in to comment.