Skip to content

Commit

Permalink
changelog & github workflows added
Browse files Browse the repository at this point in the history
  • Loading branch information
munafio committed Aug 31, 2024
1 parent 6e45b48 commit 861b301
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 4 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish to npm

on:
release:
types: [published]

jobs:
publish:
runs-on: ubuntu-latest

steps:
- name: Check out the repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm install

- name: Build the package
run: npm run build

- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Change log

All notable changes to this project will be documented in this file.

## v1.0.0-beta.1 (2024-08-31)

First release
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,6 @@ We welcome contributions from the community! Whether you want to add support for

To get started, fork the repository and submit a pull request. Please include tests for any new functionality or significant changes.

## License

APIMiner is licensed under the MIT License. This means you can freely use, modify, and distribute this software under the terms of the license. See the [LICENSE](LICENSE) file for more details.

## Acknowledgments

Special thanks to the open-source community for providing the tools and libraries that made this project possible. Your contributions to the ecosystem inspire projects like APIMiner.

0 comments on commit 861b301

Please sign in to comment.