Skip to content

Create release and publish to NPM #6

Create release and publish to NPM

Create release and publish to NPM #6

Workflow file for this run

name: Create release and publish to NPM
on:
workflow_dispatch:
push:
branches:
- main
jobs:
release:
name: Build and deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4.0.1
with:
node-version: 20.14.0
- name: Install Dependencies
run: yarn install
- name: Lint
run: yarn run lint
- name: Build
run: yarn run build
- name: Configure NPM
env:
ARTIFACTORY_USERNAME: ${{ secrets.DEVEX_ARTIFACTORY_WRITER_USERNAME }}
ARTIFACTORY_PASSWORD: ${{ secrets.DEVEX_ARTIFACTORY_WRITER_TOKEN_BASE64_ENC }}
run: |
npm config set "@loomhq:registry" "https://packages.atlassian.com/api/npm/atlassian-npm/"
npm config set "//packages.atlassian.com/api/npm/atlassian-npm/:username" "${ARTIFACTORY_USERNAME}"
npm config set "//packages.atlassian.com/api/npm/atlassian-npm/:_password" "${ARTIFACTORY_PASSWORD}"
- name: Publish (dry-run)
run: npm publish --dry-run