Skip to content

Merge pull request #32 from contentstack/development #11

Merge pull request #32 from contentstack/development

Merge pull request #32 from contentstack/development #11

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
build:
name: Build and upload
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22.x"
- name: Installing dependencies
run: npm install
- name: Build
run: npm run prepack
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
release:
name: Download dist and release
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22.x"
- name: Installing dependencies
run: npm install
- name: Download dist
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Display dirs
run: ls -R
- name: Release
id: release-plugin
uses: JS-DevTools/npm-publish@v2.2.0
with:
token: "${{ secrets.NPM_TOKEN }}"
access: public
- name: get-npm-version
id: package-version
uses: martinbeentjes/npm-get-version-action@v1.3.1
- name: github-release
id: github-release
env:
GITHUB_TOKEN: ${{ secrets.PKG_TOKEN }}
VERSION: ${{ steps.release-plugin.outputs.version }}
run: gh release create v"$VERSION" --title "Release $VERSION" --generate-notes