Skip to content

Commit

Permalink
add package workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
richardallred authored Nov 21, 2024
1 parent dcc927c commit c1686d0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit c1686d0

Please sign in to comment.