Skip to content

Commit

Permalink
Fix references to 'yarn run prepare' (#151)
Browse files Browse the repository at this point in the history
There were some leftovers from refactoring done in #148. `yarn run
prepare` should be `yarn run set-version` instead

Fixes #150
  • Loading branch information
flostadler authored Aug 21, 2024
1 parent 3921e5c commit 1a30538
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 @@ -68,7 +68,7 @@ jobs:
- name: Install packages
run: yarn install --frozen-lockfile
- name: Run build
run: yarn run prepare && yarn run build
run: yarn run set-version && yarn run build
- name: yarn link
run: yarn link
- name: set script-shell
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Install packages
run: yarn install --frozen-lockfile
- name: Run build
run: yarn run prepare && yarn run build
run: yarn run set-version && yarn run build
- name: yarn link
run: yarn link
- name: set script-shell
Expand Down

0 comments on commit 1a30538

Please sign in to comment.