diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..e2ec2d8 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a4c6a4..0d33669 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index 566b37b..498da68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@toyokumo/eslint-config", - "version": "2.0.13", + "version": "2.0.14", "engines": { "node": ">=18" },