Skip to content

fix: amending workflow for publish #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 33 additions & 32 deletions .github/workflows/publish-epicurus-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,37 @@ on:
push:
branches:
- master

jobs:
build:
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: 20
cache: 'npm'

- name: Authenticate to Github Package Registry
env:
NODE_AUTH_TOKEN: ${{ secrets.PKG_TOKEN }}
run: |
echo "@contentstack:registry=https://npm.pkg.github.com" >> ~/.npmrc
echo "//npm.pkg.github.com/:_authToken=${ NODE_AUTH_TOKEN}" > ~/.npmrc

- name: Install dependencies
run: npm install

- name: Build the package
run: npm run compile

- name: Publish to Github Package Registry
env:
NODE_AUTH_TOKEN: ${{ secrets.PKG_TOKEN }}
run: |
echo "Publishing Epicurus package to GitHub Package Registry..."
npm publish --registry=https://npm.pkg.github.com
build:
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: 20
cache: 'npm'

- name: Authenticate to GitHub Package Registry
env:
NODE_AUTH_TOKEN: ${{ secrets.PKG_TOKEN }}
run: |
echo "@contentstack:registry=https://npm.pkg.github.com" >> ~/.npmrc
echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc

- name: Install dependencies
run: npm ci

- name: Build the package
run: npm run compile

- name: Publish to GitHub Package Registry
env:
NODE_AUTH_TOKEN: ${{ secrets.PKG_TOKEN }}
run: |
echo "Publishing Epicurus package to GitHub Package Registry..."
npm publish --registry=https://npm.pkg.github.com
Loading