Skip to content

Update CHANGELOG.md #95

Update CHANGELOG.md

Update CHANGELOG.md #95

Workflow file for this run

name: Build distributions & commit dist
on:
push:
branches:
- main
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
update-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
- run: npm install
- shell: bash -xeu {0}
run: npm run build
- uses: crazy-max/ghaction-import-gpg@v6
id: gpg
with:
gpg_private_key: ${{ secrets.SIGNING_PGP_KEY }}
passphrase: ${{ secrets.SIGNING_PGP_PASSWORD }}
git_config_global: true
git_user_signingkey: true
git_commit_gpgsign: true
- name: Commit changes
env:
GIT_AUTHOR_NAME: irgaly
GIT_AUTHOR_EMAIL: ${{ steps.gpg.outputs.email }}
GIT_COMMITTER_NAME: irgaly
GIT_COMMITTER_EMAIL: ${{ steps.gpg.outputs.email }}
shell: bash +e {0}
run: |
git commit -am "Update dist" && git push origin HEAD
exit 0