Skip to content

Commit

Permalink
Merge pull request #18 from toyokumo/develop
Browse files Browse the repository at this point in the history
release action
  • Loading branch information
syunta authored Aug 2, 2024
2 parents 57916ae + 1754aec commit dc744ed
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Release

on:
push:
branches:
- main

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

- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
with:
version: 9

- uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: pnpm

- run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: pnpm publish --registry=https://npm.pkg.github.com
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [2.0.14](https://github.com/toyokumo/eslint-config/compare/v2.0.13...v2.0.14) (2024-08-02)

### [2.0.13](https://github.com/toyokumo/eslint-config/compare/v2.0.12...v2.0.13) (2024-05-15)

### [2.0.12](https://github.com/toyokumo/eslint-config/compare/v2.0.11...v2.0.12) (2024-04-23)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toyokumo/eslint-config",
"version": "2.0.13",
"version": "2.0.14",
"engines": {
"node": ">=18"
},
Expand Down

0 comments on commit dc744ed

Please sign in to comment.