Release package to NPM #18
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 package to NPM | |
run-name: Release package to NPM | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release-please: | |
if: github.repository == 'orefalo/${{ github.event.repository.name }}' # Prevent running on forks | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# The whole Node.js and pnpm installation and caching | |
# Based on https://github.com/pnpm/action-setup/tree/6e1964dde3397a825e79e4607ad57f3f7ca2c7cb#use-cache-to-reduce-installation-time | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
run: | | |
echo "pnpm_cache_dir=$(pnpm store path)" >> ${GITHUB_OUTPUT} | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: SvelteKit Sync | |
run: npx svelte-kit sync | |
- name: Svelte Package | |
run: pnpm run package | |
- name: Release Please | |
uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
release-type: node | |
- name: Upload the packed package | |
uses: actions/upload-release-asset@v1 | |
if: ${{ steps.release.outputs.release_created }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
node-version: 20 | |
upload_url: ${{ steps.release.outputs.upload_url }} | |
asset_path: package/${{ github.event.repository.name }}-${{ steps.release.outputs.version }}.tgz | |
asset_name: ${{ github.event.repository.name }}-${{ steps.release.outputs.version }}.tgz | |
asset_content_type: application/gzip | |
- name: Publish to NPM | |
uses: JS-DevTools/npm-publish@v3 # will only deploy if version has changed | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: package/ |