Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 3.0.0 #511

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,23 @@ jobs:
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: 20
always-auth: true
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: yarn

- name: Run checks
run: yarn run test && yarn lint && yarn run build
run: yarn run test && yarn lint && yarn build

- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: action-docs
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"build","section":"Miscellaneous","hidden":true}]'
last-release-sha: 71c5c39213ac3d20d98797dd47ad7674d01ff0a4

- name: Publish to NPM
run: yarn publish
if: ${{ steps.release.outputs.release_created }}
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [3.0.0](https://github.com/npalm/action-docs/compare/v2.0.0...v3.0.0) (2024-02-04)


### ⚠ BREAKING CHANGES

* support multiple actions in a single readme ([#505](https://github.com/npalm/action-docs/issues/505))

### Features

* support multiple actions in a single readme ([#505](https://github.com/npalm/action-docs/issues/505)) ([284bf3f](https://github.com/npalm/action-docs/commit/284bf3f977f4e1044368d57e7f16fad600b028b6))


### Miscellaneous

* dependencies and refactor ci ([#506](https://github.com/npalm/action-docs/issues/506)) ([44af6c0](https://github.com/npalm/action-docs/commit/44af6c0b2187140fc5e5c75c55c9168f789cc803))
* **deps:** bump yargs from 17.7.1 to 17.7.2 ([4fe7873](https://github.com/npalm/action-docs/commit/4fe7873b04979cbfd0fbf55a19eb69a8159511d2))
* fix release build ([766ba31](https://github.com/npalm/action-docs/commit/766ba310487b4e2fe90a6dc6d2f7615c7f05f0f2))
* fix release build ([efb140a](https://github.com/npalm/action-docs/commit/efb140aeccf717df2b1810e9a9709dc0cfa0139f))
* **main:** release 2.0.0 ([#507](https://github.com/npalm/action-docs/issues/507)) ([5000df4](https://github.com/npalm/action-docs/commit/5000df4e0c8cf965ad8bf2db9269dcf3fc193410))

## [1.3.0](https://github.com/npalm/action-docs/compare/v1.3.0...v1.3.0) (2023-04-07)


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": "action-docs",
"version": "2.0.0",
"version": "3.0.0",
"description": "Generate GitHub action docs based on action.yml",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down