Skip to content

Commit c8537ed

Browse files
authored
fix: Updates release-please to remove Node publishing actions. (#38)
1 parent dedfedc commit c8537ed

File tree

1 file changed

+3
-23
lines changed

1 file changed

+3
-23
lines changed

.github/workflows/release-please.yml

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
# limitations under the License.
1414

1515
## Runs the release-please action for all new pushes to the main branch.
16-
## This will create new release-PRs, create GitHub releases, update
17-
## the CHANGELOG.md, and upload /dist to the Cloud bucket.
16+
## This updates the CHANGELOG.md, and uploads the contents of /dist to
17+
## the Cloud bucket. It does NOT release to Node, but it provides
18+
## handy version incrementing which is useful for us.
1819

1920
on:
2021
push:
@@ -74,24 +75,3 @@ jobs:
7475
bash ./upload-to-bucket.sh
7576
env:
7677
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_CLOUD_CREDENTIALS }}
77-
78-
# NPM Publishing (unchanged)
79-
- if: ${{ steps.release.outputs.release_created }}
80-
name: Setup Node for Publishing
81-
uses: actions/setup-node@v3
82-
with:
83-
node-version: 20
84-
registry-url: "https://wombat-dressing-room.appspot.com/"
85-
86-
- if: ${{ steps.release.outputs.release_created }}
87-
name: Publish
88-
run: npm publish
89-
env:
90-
NODE_AUTH_TOKEN: ${{ secrets.NPM_WOMBAT_TOKEN }}
91-
92-
- if: ${{ steps.release.outputs.release_created }}
93-
name: Upload to Cloud Bucket
94-
run: |
95-
bash ./upload-to-bucket.sh
96-
env:
97-
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_CLOUD_CREDENTIALS }}

0 commit comments

Comments
 (0)