Skip to content

Commit

Permalink
fix pipeline for first time release of package
Browse files Browse the repository at this point in the history
  • Loading branch information
bbohlender committed Jan 11, 2025
1 parent 5835b68 commit ade9c48
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ jobs:
run: pnpm publish --access public --no-git-checks --tag alpha


- id: check-handle-vanilla
uses: PostHog/check-package-version@v2
with:
path: ./packages/handle/
# - id: check-handle-vanilla
# uses: PostHog/check-package-version@v2
# with:
# path: ./packages/handle/

- name: Deploy Handle Vanilla Package
if: steps.check-handle-vanilla.outputs.is-new-version == 'true'
# if: steps.check-handle-vanilla.outputs.is-new-version == 'true'
working-directory: ./packages/handle
run: pnpm publish --access public --no-git-checks --tag alpha

Expand All @@ -92,13 +92,13 @@ jobs:
working-directory: ./packages/xr
run: pnpm publish --access public --no-git-checks --tag alpha

- id: check-handle-react
uses: PostHog/check-package-version@v2
with:
path: ./packages/react/handle/
# - id: check-handle-react
# uses: PostHog/check-package-version@v2
# with:
# path: ./packages/react/handle/

- name: Deploy Handle React Package
if: steps.check-handle-react.outputs.is-new-version == 'true'
# if: steps.check-handle-react.outputs.is-new-version == 'true'
working-directory: ./packages/react/handle
run: pnpm publish --access public --no-git-checks --tag alpha

Expand Down

0 comments on commit ade9c48

Please sign in to comment.