Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump changeset #59

Merged
merged 3 commits into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ jobs:
# We set the changeset tag command here to auto-create github tag for each package
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Run yarn changeset tag
run: yarn changeset tag