From 62d783b1be587424e8e4799f02af3de5d8d77c16 Mon Sep 17 00:00:00 2001 From: Alex Layton Date: Tue, 16 Jul 2024 18:33:29 -0400 Subject: [PATCH] ci(build): fix workflow --- .github/workflows/build-test-push.yml | 19 +++++++++++++++++++ package.json | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test-push.yml b/.github/workflows/build-test-push.yml index cdf3f21..92df47d 100644 --- a/.github/workflows/build-test-push.yml +++ b/.github/workflows/build-test-push.yml @@ -14,6 +14,22 @@ name: Build, test, and push service images +permissions: + packages: write + security-events: write + id-token: write + actions: read + checks: read + contents: read + deployments: read + issues: read + discussions: read + pages: read + pull-requests: read + repository-projects: read + statuses: read + attestations: read + on: push: pull_request: @@ -22,7 +38,10 @@ jobs: yarn: name: yarn CI uses: qlever-llc/workflows/.github/workflows/build-and-publish-package.yml@master + secrets: + npm_token: ${{ secrets.NPM_AUTH_TOKEN }} with: + # Remove this line if your tests don't need an OADA instance oada: true publish: false docker: diff --git a/package.json b/package.json index 08b12a3..3a385d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@trellisfw/monitor", - "version": "2.2.3", + "version": "2.2.4", "description": "A Trellis microservice to respond to monitor pings, spawn and check things internally, and respond with success or fail", "main": "dist/index.js", "type": "module",