Skip to content

Commit

Permalink
fix: issue with path
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget committed Jan 27, 2025
1 parent b622f9b commit dfcfa2d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/01-build-patternhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
ASSET_PASSWORD: ${{ secrets.ASSET_PASSWORD }}
NEXT_PUBLIC_BASE_PATH: ${{ steps.base-path.outputs.result }}
run: |
npx --no tsx/md-resolve-svg.ts
npx --no tsx scripts/md-resolve-svg.ts
npm run build --workspace=patternhub
echo "path=${NEXT_PUBLIC_BASE_PATH}" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/01-get-playwright-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: 🪁 Get playwright version
id: version
run: |
OUTPUT=$(npx --no tsx/github/get-playwright-version.ts)
OUTPUT=$(npx --no tsx scripts/github/get-playwright-version.ts)
echo "version=$OUTPUT" >> $GITHUB_OUTPUT
- name: 💀 Killing me softly
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/01-get-publish-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: 💃🕺 Check if release or prerelease
id: releaseCheck
run: |
OUTPUT=$(npx --no tsx/github/get-release.ts)
OUTPUT=$(npx --no tsx scripts/github/get-release.ts)
if [[ $OUTPUT == "RELEASE" ]];
then
echo "release=true" >> $GITHUB_OUTPUT
Expand All @@ -59,7 +59,7 @@ jobs:
PRE_RELEASE: ${{ steps.releaseCheck.outputs.preRelease }}
TAG: ${{ steps.extractTag.outputs.tag }}
run: |
OUTPUT=$(npx --no tsx/github/package-version.ts)
OUTPUT=$(npx --no tsx scripts/github/package-version.ts)
echo "version=$OUTPUT" >> $GITHUB_OUTPUT
- name: 🌳 Log Valid Version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/03-deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
REPO_NAME: ${{ steps.repo-name.outputs.result }}
OWNER_NAME: ${{ github.repository_owner }}
run: |
npx --no tsx/github/build-gh-page.ts
npx --no tsx scripts/github/build-gh-page.ts
- name: 🥅 Deploy to GH-Pages
uses: peaceiris/actions-gh-pages@v4
Expand Down

0 comments on commit dfcfa2d

Please sign in to comment.