Skip to content

Commit

Permalink
Fix release (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
eXon committed Aug 14, 2023
1 parent efc974c commit 7e1f33b
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,25 +36,33 @@ jobs:
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Update version for universal-cookie
run: yarn workspace universal-cookie version --no-git-tag-version --new-version ${VERSION}
working-directory: ./packages/universal-cookie
run: npm version --no-git-tag-version --new-version ${VERSION}

- name: Publish universal-cookie to NPM
run: yarn workspace universal-cookie npm publish
working-directory: ./packages/universal-cookie
run: npm publish

- name: Update version for react-cookie
run: yarn workspace react-cookie version --no-git-tag-version --new-version ${VERSION}
working-directory: ./packages/react-cookie
run: npm version --no-git-tag-version --new-version ${VERSION}

- name: Publish react-cookie to NPM
working-directory: ./packages/react-cookie
run: yarn workspace react-cookie npm publish

- name: Update version for universal-cookie-express
run: yarn workspace universal-cookie-express version --no-git-tag-version --new-version ${VERSION}
working-directory: ./packages/universal-cookie-express
run: npm version --no-git-tag-version --new-version ${VERSION}

- name: Publish universal-cookie-express to NPM
working-directory: ./packages/universal-cookie-express
run: yarn workspace universal-cookie-express npm publish

- name: Update version for universal-cookie-koa
run: yarn workspace universal-cookie-koa version --no-git-tag-version --new-version ${VERSION}
working-directory: ./packages/universal-cookie-koa
run: npm version --no-git-tag-version --new-version ${VERSION}

- name: Publish universal-cookie-koa to NPM
working-directory: ./packages/universal-cookie-koa
run: yarn workspace universal-cookie-koa npm publish

0 comments on commit 7e1f33b

Please sign in to comment.