Skip to content

Commit 3c83d6d

Browse files
committed
feat: deploy
1 parent 96c69a8 commit 3c83d6d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/check-bun-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: steps.bun-version.outputs.latest != steps.bun-version.outputs.current
4040
run: |
4141
sam build
42-
sam deploy --no-execute-changeset --parameter-overrides "BunVersion=${{ steps.bun-version.outputs.latest }}"
42+
sam deploy --stack-name bun-runtime --no-confirm-changeset --no-fail-on-empty-changeset --parameter-overrides "BunVersion=${{ steps.bun-version.outputs.latest }}"
4343
4444
- name: Update version file
4545
if: success() && steps.bun-version.outputs.latest != steps.bun-version.outputs.current

template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ Resources:
3838

3939
Outputs:
4040
BunLayerArm64:
41-
Description: Bun runtime (ARM64)
41+
Description: !Sub "Bun runtime v${BunVersion} (ARM64)"
4242
Value: !Ref BunLayerArm64
4343
Export:
4444
Name: BunLayerArm64
4545

4646
BunLayerX64:
47-
Description: Bun runtime (x64)
47+
Description: !Sub "Bun runtime v${BunVersion} (x64)"
4848
Value: !Ref BunLayerX64
4949
Export:
5050
Name: BunLayerX64

0 commit comments

Comments
 (0)