Skip to content

Commit

Permalink
Bump changeset (#59)
Browse files Browse the repository at this point in the history
* docs(changeset): Official 2.0.0 version

* Added yarn changeset tag back to release.yml

* Correct .github/workflows/npm-publish-dev.yml
  • Loading branch information
chrisli30 authored Aug 23, 2023
1 parent 7caf2ec commit 6d05695
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changeset/flat-clocks-eat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@oak-network/api-augment": patch
"@oak-network/types": patch
---

Official 2.0.0 version
6 changes: 3 additions & 3 deletions .github/workflows/npm-publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
- name: Set name of packages
id: set_package_names
run: |
echo '["@oak-network/api-augment", "@oak-network/types"]' > packages.json
packages='@oak-network/api-augment @oak-network/types'
echo "::set-output name=packages::$packages"
- name: Setup Node.js environment
uses: actions/setup-node@v3.0.0
Expand All @@ -36,8 +37,7 @@ jobs:
- name: Loop through Package Names
id: loop-package-names
run: |
packages=$(cat packages.json)
for package in $packages; do
for package in ${{ steps.set_package_names.outputs.packages }}; do
echo "Processing package: $package"
npm publish --tag dev "packages/$package"
done
Expand Down

0 comments on commit 6d05695

Please sign in to comment.