https://github.com/simenandre/publish-with-yarn-classic
Publish NPM packages with Yarn Classic
https://github.com/simenandre/publish-with-yarn-classic
action github-actions
Last synced: about 2 months ago
JSON representation
Publish NPM packages with Yarn Classic
- Host: GitHub
- URL: https://github.com/simenandre/publish-with-yarn-classic
- Owner: simenandre
- License: apache-2.0
- Created: 2023-05-10T12:25:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T18:39:47.000Z (about 1 year ago)
- Last Synced: 2025-01-07T07:44:01.167Z (10 months ago)
- Topics: action, github-actions
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.
```yaml
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
- [simenandre/publish-with-yarn](https://github.com/simenandre/publish-with-yarn)
- [simenandre/publish-with-pnpm](https://github.com/simenandre/publish-with-pnpm)