Skip to content
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