Skip to content

Commit

Permalink
Test indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
72636c committed Mar 18, 2024
1 parent ef04794 commit 1a79f56
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Publish to npm
uses: changesets/action@v1
with:
publish: pnpm release
version: pnpm stage
env:
GITHUB_TOKEN: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEEK_OSS_CI_NPM_TOKEN }}
# - name: Publish to npm
# uses: changesets/action@v1
# with:
# publish: pnpm release
# version: pnpm stage
# env:
# GITHUB_TOKEN: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
# NPM_TOKEN: ${{ secrets.SEEK_OSS_CI_NPM_TOKEN }}

- name: Deploy to GitHub Pages
run: pnpm run deploy
Expand Down
12 changes: 7 additions & 5 deletions docs/deep-dives/arm64.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,13 @@ Once you have located these files,
set the `cpuArchitecture` property on the `ContainerImage` and `Service` resources:

```diff
kind: ContainerImage
kind: ContainerImage

schemaVersion: v0.0
schemaVersion: v0.0

+ cpuArchitecture: arm64

...
...
```

```diff
Expand Down Expand Up @@ -331,16 +331,18 @@ const worker = new aws_lambda_nodejs.NodejsFunction(this, 'worker', {

For a [Serverless] worker, set the `provider.architecture` property in [`serverless.yml`]:

<!-- prettier-ignore -->
```diff
provider:
name: aws

+ architecture: arm64
runtime: nodejs20.x

...
```

<!-- prettier-ignore -->
[`.buildkite/pipeline.yml`]: https://buildkite.com/docs/pipelines/defining-steps#customizing-the-pipeline-upload-path
[`FROM`]: https://docs.docker.com/reference/dockerfile/#from
[`serverless.yml`]: https://www.serverless.com/framework/docs/providers/aws/guide/serverless.yml
Expand Down

0 comments on commit 1a79f56

Please sign in to comment.