Skip to content

Merge pull request #206 from contentstack/staging #9

Merge pull request #206 from contentstack/staging

Merge pull request #206 from contentstack/staging #9

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/[email protected]
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: "18.x"
- name: Installing dependencies
run: npm install
- name: Build
run: npm run prepack
- name: Upload dist
uses: actions/[email protected]
with:
name: lib
path: lib
release:
name: Download dist and release
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: "18.x"
- name: Installing dependencies
run: npm install
- name: Download dist
uses: actions/download-artifact@v3
with:
name: lib
path: lib
- name: Display dirs
run: ls -R
- name: Release
id: release-plugin
uses: JS-DevTools/[email protected]
with:
token: ${{ secrets.NPM_TOKEN }}
access: public
- name: get-npm-version
id: package-version
uses: martinbeentjes/[email protected]
- name: github-release
id: github-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create v${{ steps.release-plugin.outputs.version }} --title "Release ${{ steps.release-plugin.outputs.version }}" --generate-notes