Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(utils): remove line break
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron Netzer committed Jun 29, 2021
1 parent 79149c9 commit 2f7411b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ jobs:
with:
persist-credentials: false

- name: Set git config
run: git config --global hub.protocol https

- name: Obtain GitHub App Installation Access Token
id: githubAppAuth
run: |
Expand Down Expand Up @@ -194,9 +197,9 @@ jobs:
run: |
git config user.name e-square-ci
git config user.email [email protected]
git config --global hub.protocol https
git remote set-url origin "https://x-access-token:[email protected]/e-square-io/${{ matrix.package }}.git"
git remote set-url --push origin "https://x-access-token:[email protected]/e-square-io/${{ matrix.package }}.git"
git fetch --unshallow origin
git tag -d v${{ needs.release.outputs.major }} || true
git tag -d v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} || true
git push origin :v${{ needs.release.outputs.major }} || true
Expand Down
1 change: 0 additions & 1 deletion packages/utils/src/lib/nx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export type WorkspaceProjects = WorkspaceJsonConfiguration['projects'];

export function getWorkspaceProjects(): WorkspaceProjects {
const workspaceFile = tree.exists('angular.json') ? 'angular.json' : 'workspace.json';

debug(`🐞 Found ${workspaceFile} as nx workspace`);

const workspaceContent: WorkspaceJsonConfiguration = JSON.parse(
Expand Down

0 comments on commit 2f7411b

Please sign in to comment.