-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge from main for prettier updates
- Loading branch information
Showing
1,017 changed files
with
37,853 additions
and
46,922 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,27 +29,27 @@ jobs: | |
# final release versions do not contain '-' | ||
if: ${{ contains(github.event.inputs.version, '-') == false }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 15.x | ||
node-version: 22 | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: | | ||
${{ secrets.ALLOY_BOT_GITHUB_SSH_PRIVATE_KEY }} | ||
${{ secrets.CDN_PRIVATE_KEY }} | ||
- uses: actions/cache@v2 | ||
- uses: actions/cache@v4 | ||
id: npm-cache | ||
with: | ||
path: '**/node_modules' | ||
path: "**/node_modules" | ||
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}-${{ secrets.NPM_CACHE_VERSION }} # increment NPM_CACHE_VERSION secret to force cache reset | ||
- name: Install dependencies | ||
if: steps.npm-cache.outputs.cache-hit != 'true' | ||
run: npm ci | ||
- run: ./scripts/deploy.js ${{ github.event.inputs.version }} latest | ||
env: | ||
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }} | ||
- uses: actions/upload-artifact@v2 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: build | ||
path: | | ||
|
@@ -62,10 +62,10 @@ jobs: | |
# prerelease versions contain '-' | ||
if: ${{ contains(github.event.inputs.version, '-') }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 15.x | ||
node-version: 22 | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: | | ||
|
@@ -74,15 +74,15 @@ jobs: | |
- uses: actions/cache@v2 | ||
id: npm-cache | ||
with: | ||
path: '**/node_modules' | ||
path: "**/node_modules" | ||
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}-${{ secrets.NPM_CACHE_VERSION }} # increment NPM_CACHE_VERSION secret to force cache reset | ||
- name: Install dependencies | ||
if: steps.npm-cache.outputs.cache-hit != 'true' | ||
run: npm ci | ||
- run: ./scripts/deploy.js ${{ github.event.inputs.version }} next | ||
env: | ||
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }} | ||
- uses: actions/upload-artifact@v2 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: build | ||
path: | | ||
|
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
Oops, something went wrong.