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

Commit

Permalink
ci: publish dir not found
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron Netzer committed Mar 1, 2022
1 parent 3f7b388 commit aaab743
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:
if: ${{ contains(needs.setup.outputs.matrix, matrix.package) }}
uses: e-square-io/.github/.github/actions/push-to-repo@main
with:
path: dist/packages/${{ matrix.package }}
path: 'dist/packages/${{ matrix.package }}'
github-token: ${{ steps.githubAppAuth.outputs.github-token }}
version: ${{ needs.release.outputs.version }}
repository: ${{ matrix.package }}
2 changes: 1 addition & 1 deletion packages/utils/src/lib/artifact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export async function uploadArtifact(glob: typeof Glob, name: string, paths: str
}

const { failedItems, artifactName, size } = await artifactClient().uploadArtifact(name, files, process.cwd());

debug(`name: ${artifactName}, size: ${size}, failedItems: ${failedItems.join(', ')}`);

success(`Successfully uploaded ${artifactName}`);
return artifactName;
} catch (e) {
Expand Down

0 comments on commit aaab743

Please sign in to comment.