Skip to content

Update CHANGELOG.md file #59

Update CHANGELOG.md file

Update CHANGELOG.md file #59

Workflow file for this run

name: Documentation and CHANGELOG
on:
push:
branches:
- develop
jobs:
docs:
name: Build docs and CHANGELOG
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: "14"
- name: Updating CHANGELOG
run: npm run changelog
- uses: EndBug/add-and-commit@v5
with:
add: "CHANGELOG.md"
branch: develop
message: "Update CHANGELOG.md file"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Copy README file
uses: canastro/copy-file-action@master
with:
source: "README.md"
target: "docs/README.md"
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: ./docs
CLEAN: true