Skip to content

Commit

Permalink
re-fixed the other github script as well
Browse files Browse the repository at this point in the history
  • Loading branch information
ildella committed Sep 1, 2024
1 parent 4f4c415 commit 0a43b85
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 27 deletions.
63 changes: 37 additions & 26 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,53 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Publish to NPM

# on:
# release:
# types: [created]

on:
push:
# branches: [master]
tags:
- '*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
- run: yarn
- run: yarn test
- name: Checkout code
uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'

- name: Install dependencies
run: yarn

- name: Run tests
run: yarn test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
registry-url: https://registry.npmjs.org/
- run: yarn workspaces focus --all --production
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
- name: Checkout code
uses: actions/checkout@v4

- name: Enable Corepack
run: corepack enable

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
registry-url: https://registry.npmjs.org/

- name: Install production dependencies
run: yarn workspaces focus --all --production

- name: Publish package
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "svelte-marked",
"description": "A markdown renderer for Svelte.",
"version": "0.5.3",
"version": "0.5.4",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
Expand Down

0 comments on commit 0a43b85

Please sign in to comment.