Skip to content

Merge pull request #8 from cinaq/mendix-cli #39

Merge pull request #8 from cinaq/mendix-cli

Merge pull request #8 from cinaq/mendix-cli #39

Workflow file for this run

name: Publish
on:
push:
branches:
- main
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
git clone https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY -b gh-pages public
make tools/hugo
find
./tools/hugo
- name: Publish
run: |
git config --global user.name 'Robot'
git config --global user.email '[email protected]'
cd public && git add . && git commit -m "Publish" && git push origin gh-pages