Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
ci: fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
udondan committed Apr 10, 2024
1 parent c7e8ef8 commit 66429a4
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/test-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
name: Publish packages TEST

concurrency:
group: test
cancel-in-progress: false

on:
pull_request:
branches:
- main
workflow_dispatch:

jobs:
publish:
runs-on: ubuntu-latest

defaults:
run:
shell: bash

container:
image: public.ecr.aws/jsii/superchain:1-bookworm-slim-node20

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Install dependencies
run: |
make install
sudo apt-get update
sudo apt-get install -y tree
- name: Build source w/ jsii
run: |
lambda/build
npx jsii
make validate-package
- name: Build packages w/ jsii-pacmak
run: |
npx jsii-pacmak --verbose
tree dist

0 comments on commit 66429a4

Please sign in to comment.