From c1686d0eafc9c920d1d575638bf1b98292f73f2e Mon Sep 17 00:00:00 2001 From: Richard Allred Date: Thu, 21 Nov 2024 12:18:17 -0500 Subject: [PATCH] add package workflow --- .github/workflows/build-and-publish.yml | 36 +++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/build-and-publish.yml diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml new file mode 100644 index 0000000..1d938bc --- /dev/null +++ b/.github/workflows/build-and-publish.yml @@ -0,0 +1,36 @@ +name: Publish npm Package + +on: + push: + branches: + - main + +jobs: + build-and-publish: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '16' + registry-url: 'https://npm.pkg.github.com/' + + - name: Install dependencies + run: npm install + + - name: Build the package + run: npm run build + + - name: Publish to GitHub Package Registry + env: + NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} + run: npm publish + + - name: Verify publication + run: npm info @RedHatTraining/catalog-manager-models + env: + NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} \ No newline at end of file