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
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron Netzer committed Jun 29, 2021
1 parent 80e7363 commit 38637c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,4 +229,5 @@ jobs:
git push -f origin --delete v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} || true
git tag -fa v${{ needs.release.outputs.major }} -m "Release v${{ needs.release.outputs.major }}"
git tag -fa v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} -m "Release v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }}"
git push -f --tags
git push origin -f refs/tags/v${{ needs.release.outputs.major }} -m "Release v${{ needs.release.outputs.major }}"
git push origin -f refs/tags/v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }} -m "Release v${{ needs.release.outputs.major }}.${{ needs.release.outputs.minor }}"
1 change: 0 additions & 1 deletion packages/utils/src/lib/nx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export function getWorkspaceProjects(): WorkspaceProjects {

export function getProjectOutputs(projects: WorkspaceProjects, project: string, target: string): string[] {
const projectTarget = projects[project].targets[target];

let outputs = projectTarget.outputs ?? [];

const replaceExpressions = (path: string) => {
Expand Down

0 comments on commit 38637c6

Please sign in to comment.