Skip to content

Commit

Permalink
Try gemini suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
SantaClaas committed Feb 12, 2025
1 parent d5b9eae commit 28f22de
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,16 @@ jobs:
# The output of the pack command is the path to generated the tarball
# Used later to upload the artifact
run: |
PACKAGE_PATH="$(pnpm pack)"
echo "$PACKAGE_PATH"
echo "$PACKAGE_PATH" >> "$GITHUB_OUTPUT"
PACKAGE_FILE=$(pnpm pack)
echo "PACKAGE_FILE=$PACKAGE_FILE" >> $GITHUB_OUTPUT
- name: Archive production artifacts
uses: actions/upload-artifact@v4
if: ${{ steps.check-tag.outputs.IS_RELEASE == 'true' }}
with:
name: package-file
# Now we only need to upload the tarball which should have all the files npm cares for
path: ${{ steps.pack.outputs.PACKAGE }}
path: ${{ steps.pack.outputs.PACKAGE_FILE }}

publish-npm:
# Only publish when a release tag is pushed
Expand Down

0 comments on commit 28f22de

Please sign in to comment.