From 06fa4d9c1f937518f1ff7eb71c751a5b7c205aa6 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 2 Oct 2024 19:36:56 +0200 Subject: [PATCH] add nr-common package publish action --- .github/workflows/publish-nr-common.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/publish-nr-common.yml diff --git a/.github/workflows/publish-nr-common.yml b/.github/workflows/publish-nr-common.yml new file mode 100644 index 0000000..bc659a0 --- /dev/null +++ b/.github/workflows/publish-nr-common.yml @@ -0,0 +1,16 @@ +name: Publish nr-common + +on: + push: + branches: + - main + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write # The OIDC ID token is used for authentication with JSR. + steps: + - uses: actions/checkout@v4 + - run: cd nr-common; npx jsr publish --allow-slow-types \ No newline at end of file