Skip to content

simenandre/publish-with-yarn-classic

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simenandre/publish-with-yarn-classic

This composite action will publish your package to NPM using Yarn Classic.

It parses tag version and set that in package.json before publishing, and pushes that to the default branch after publishing.

name: Release to NPM

on:
  release:
    types: [released]

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3

      - name: Use Node LTS ✨
        uses: actions/setup-node@v3
        with:
          node-version: lts/*
          registry-url: https://registry.npmjs.org
          cache: yarn

      - name: Install dependencies 📦️
        run: yarn install --frozen-lockfile

      - name: Build 🔨
        run: yarn build

      - uses: simenandre/publish-with-yarn-classic@v1
        with:
          npm-auth-token: ${{ secrets.NPM_TOKEN }}

Other actions

About

Publish NPM packages with Yarn Classic

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published