chore: remove un used deps #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
env: | |
GIT_USER_EMAIL: ${{ secrets.GIT_EMAIL }} | |
GIT_USER_NAME: ${{ secrets.GIT_NAME }} | |
permissions: | |
contents: write | |
jobs: | |
bump_version: | |
if: "!startsWith(github.event.head_commit.message , 'bump:')" | |
runs-on: ubuntu-latest | |
name: 'Bump version' | |
outputs: | |
version: ${{ steps.cz.outputs.version }} | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.ACCESS_TOKEN }} | |
ref: 'main' | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.11 | |
- name: Config Git User | |
run: | | |
git config --local user.email "$GIT_USER_EMAIL" | |
git config --local user.name "$GIT_USER_NAME" | |
git config --local pull.ff only | |
- id: cz | |
name: Create bump and changelog | |
run: | | |
python -m pip install -U commitizen | |
cz bump --yes | |
export REV=`cz version --project` | |
echo "version=\"v$REV\"" >> $GITHUB_OUTPUT | |
- name: Push changes | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.ACCESS_TOKEN }} | |
repository: ${{ github.repository }} | |
branch: 'main' | |
directory: . | |
tags: true | |
- name: Print Version | |
run: echo "Bumped to version ${{ steps.cz.outputs.version }}" | |
npm_publish: | |
name: Publish to NPM | |
runs-on: ubuntu-latest | |
needs: | |
- bump_version | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.ACCESS_TOKEN }} | |
ref: main | |
- name: Setup NodeJS with cache | |
uses: Drafteame/node-cache-action@main | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install --legacy-peer-deps | |
- name: Publish to NPM | |
uses: JS-DevTools/npm-publish@v3 | |
with: | |
token: ${{ secrets.NPM_ACCESS_TOKEN }} | |
access: public | |
strategy: upgrade | |
release: | |
name: Release version | |
runs-on: ubuntu-latest | |
needs: | |
- bump_version | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.ACCESS_TOKEN }} | |
ref: main | |
- name: Create Release | |
env: | |
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
run: | | |
gh release create ${{ needs.bump_version.outputs.version }} \ | |
--title ${{ needs.bump_version.outputs.version }} \ | |
--target main \ | |
--verify-tag \ | |
--latest |