-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [js] Adding node setup to main bazel.yml * [js] Nightly for JavaScript * [js] Adding missing parameter * [js] Building and packaging locally, npm to publish * [js] Trying to push with wildcard * [js] Trying to set the NODE_AUTH_TOKEN * [js] Debugging * [js] Modifying npmrc * [js] Copying npmrc * [js] Now trying with publishConfig and registru * [js] Fixing command for ubuntu * [js] Trying more things to auth * [js] Both npmrc files * [js] Changing package name * [js] Bumping version * [js] Removing next tag * [js] Just publishing once * [js] Only npmrc on the root directory * [js] Only npmrc on the root directory * [js] Using nightly now
- Loading branch information
Showing
6 changed files
with
67 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,11 @@ on: | |
required: false | ||
type: string | ||
default: '' | ||
node-version: | ||
description: Custom Node version to install | ||
required: false | ||
type: string | ||
default: '' | ||
ruby-version: | ||
description: Custom Ruby version to use | ||
required: false | ||
|
@@ -72,6 +77,7 @@ jobs: | |
SEL_M2_PASS: ${{ secrets.SEL_M2_PASS }} | ||
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | ||
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SE_AVOID_STATS: true | ||
steps: | ||
- name: Checkout source tree | ||
|
@@ -103,6 +109,11 @@ jobs: | |
with: | ||
java-version: ${{ inputs.java-version }} | ||
distribution: 'temurin' | ||
- name: Setup Node | ||
if: inputs.node-version != '' | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ inputs.node-version }} | ||
- name: Setup Bazel with caching | ||
if: inputs.caching | ||
uses: bazel-contrib/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.