Skip to content

馃敄 release [email protected]

馃敄 release [email protected] #42

Workflow file for this run

name: Release
on:
push:
tags:
- v*
- nuxt@*
jobs:
release:
name: Release
if: github.repository == 'prazdevs/pinia-plugin-persistedstate'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install pnpm
id: pnpm-install
uses: pnpm/action-setup@v2
with:
run_install: false
- name: Get pnpm store
id: pnpm-store
shell: bash
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-store.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Build packages
run: pnpm run build
- name: Run tests w/ coverage
run: pnpm run test:coverage
- name: Get package name
id: pkg
run: |
if [[ $GITHUB_REF_NAME =~ ^v.+ ]]; then
pkg="plugin"
else
pkg=${GITHUB_REF_NAME%@*}
fi
echo "::set-output name=pkg::$pkg"
- name: Publish coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ steps.pkg.outputs.pkg }}
directory: ./packages/${{ steps.pks.outputs.pkg }}/coverage
- name: Publish on NPM
uses: JS-DevTools/npm-publish@v1
with:
access: public
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/${{ steps.pkg.outputs.pkg }}/package.json