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

Commit 7bb8281

Browse files
author
Ron Netzer
committed
fix(utils): remove line break
1 parent 52ee559 commit 7bb8281

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,11 @@ jobs:
178178
git remote set-url --push origin "https://x-access-token:$GITHUB_TOKEN@github.com/e-square-io/nx-github-actions.git"
179179
git tag -d v${{ needs.release.outputs.major }} || true
180180
git tag -d v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} || true
181-
git -f origin --delete v${{ needs.release.outputs.major }} || true
182-
git -f origin --delete v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} || true
181+
git push -f origin --delete v${{ needs.release.outputs.major }} || true
182+
git push -f origin --delete v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} || true
183183
git tag -fa v${{ needs.release.outputs.major }} -m "Release v${{ needs.release.outputs.major }}"
184184
git tag -fa v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} -m "Release v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }}"
185-
git push -f --follow-tags
185+
git push -f --tags
186186
187187
- name: Obtain GitHub App Installation Access Token
188188
id: githubAppAuth
@@ -226,4 +226,4 @@ jobs:
226226
git push -f origin --delete v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} || true
227227
git tag -fa v${{ needs.release.outputs.major }} -m "Release v${{ needs.release.outputs.major }}"
228228
git tag -fa v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} -m "Release v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }}"
229-
git push -f --follow-tags
229+
git push -f --tags

packages/utils/src/lib/nx.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ export async function nxCommand(command: string, target: string, exec: Exec, arg
7878

7979
export async function nxPrintAffected(target: string, exec: Exec): Promise<string[]> {
8080
const projects = (await nxCommand('print-affected', target, exec, ['--select=tasks.target.project'])).trim();
81-
8281
debug(`🐞 Affected project for ${target}: ${projects}`);
8382

8483
return projects.split(', ');

0 commit comments

Comments
 (0)