Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.
Merged
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
14 changes: 1 addition & 13 deletions .github/workflows/release_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: "Publish to npmjs.com"
run: |
result=$(pnpm --no-git-checks -r publish -filter '@fluencelabs/*')
result=$(pnpm --no-git-checks -r publish -filter '@fluencelabs/*' --access public)
if [[ $result == "There are no new packages that should be published" ]]
then
echo ERROR: no packages have been published. Did you forget to bump version?
Expand All @@ -37,15 +37,3 @@ jobs:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: "Get the version of fluence-js package"
id: package-version
uses: martinbeentjes/npm-get-version-action@main
with:
path: packages/fluence-js

- name: "Create tag for release"
uses: rickstaa/action-create-tag@v1
with:
tag: "v${{ steps.package-version.outputs.current-version }}"
message: ""
github_token: ${{ secrets.GITHUB_TOKEN }}