chore(deps): update all dependencies (#79) #77
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
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: false | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: | | |
pnpm i --frozen-lockfile | |
pnpm build | |
- uses: JS-DevTools/npm-publish@v2 | |
id: publish | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
- name: Create Tag | |
if: ${{ steps.publish.outputs.type }} | |
id: create_tag | |
uses: jaywcjlove/create-tag-action@main | |
with: | |
package-path: ./package.json | |
- name: Generate Changelog | |
id: changelog | |
uses: jaywcjlove/changelog-generator@main | |
if: steps.create_tag.outputs.successful | |
with: | |
head-ref: ${{steps.create_tag.outputs.version}} | |
filter-author: (Uninen|renovate-bot) | |
show-emoji: false | |
- name: Get the changelog | |
run: echo "${{ steps.changelog.outputs.changelog }}" | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
if: steps.create_tag.outputs.successful | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: ${{ steps.create_tag.outputs.version }} | |
tag: ${{ steps.create_tag.outputs.version }} | |
body: | | |
${{ steps.changelog.outputs.changelog }} | |
Compare changes: ${{ steps.changelog.outputs.compareurl }} | |
Read more from the Changelog: https://github.com/slipmatio/logger/blob/main/CHANGES.md |