Skip to content

Commit

Permalink
chore: bump @dcl/kernel from 1.0.0-2227136955.commit-c4944ec to 1.0.0…
Browse files Browse the repository at this point in the history
…-3482189927.commit-83faef0 (#898)

* chore: bump @dcl/kernel

Bumps @dcl/kernel from 1.0.0-2227136955.commit-c4944ec to 1.0.0-3482189927.commit-83faef0.

---
updated-dependencies:
- dependency-name: "@dcl/kernel"
  dependency-type: indirect
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mariano Goldman <mariano.goldman@decentraland.org>
  • Loading branch information
dependabot[bot] and Mariano Goldman authored Mar 27, 2024
1 parent ccb4688 commit 731b647
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ jobs:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: install
run: npm ci
- name: build
Expand All @@ -38,11 +39,12 @@ jobs:
outputs:
cli_s3_bucket_key: ${{ steps.publish_cli.outputs.s3-bucket-key }}
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: install
run: npm ci
- name: build
Expand All @@ -53,12 +55,14 @@ jobs:
with:
registry-url: "https://registry.npmjs.org"
access: public

## publish every package to s3
s3-bucket: ${{ secrets.SDK_TEAM_S3_BUCKET }}
s3-bucket-key-prefix: 'decentraland-cli/branch/${{ github.head_ref || github.ref }}'
s3-bucket-region: ${{ secrets.SDK_TEAM_AWS_REGION }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
AWS_DEFAULT_REGION: us-east-1
AWS_ACCESS_KEY_ID: ${{ secrets.SDK_TEAM_AWS_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SDK_TEAM_AWS_SECRET }}

Expand All @@ -69,19 +73,17 @@ jobs:
name: Deployment Notification
steps:
- name: Find Comment
uses: peter-evans/find-comment@v1
uses: peter-evans/find-comment@v3
id: fc
with:
issue-number: ${{ github.event.pull_request.number }}
comment-author: 'github-actions[bot]'
body-includes: Test this pull request
- name: Generate S3 URL
id: url-generator
run: |
body=$(echo ${{ secrets.SDK_TEAM_S3_BASE_URL }})/${{ needs.publish.outputs.cli_s3_bucket_key }}
echo ::set-output name=body::$body
run: echo "body=${{ secrets.SDK_TEAM_S3_BASE_URL }}/${{ needs.publish.outputs.cli_s3_bucket_key }}" >> $GITHUB_OUTPUT
- name: Create or update comment
uses: peter-evans/create-or-update-comment@v1
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
Expand All @@ -91,4 +93,4 @@ jobs:
```bash
npm i -g "${{ steps.url-generator.outputs.body }}"
```
edit-mode: replace
edit-mode: replace
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 731b647

Please sign in to comment.