Merge pull request #112 from contentstack/staging #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |