Skip to content

remove unused tool def #85

remove unused tool def

remove unused tool def #85

Workflow file for this run

name: publish
on:
push:
branches: [main]
jobs:
publish-site:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup git
run: |
git config --global user.email "mpippi@gmail.com"
git config --global user.name "masci"
git remote add upstream https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
extended: true
- name: Build site
run: hugo -s site
- name: Push gh-pages branch
run: |
git add -A --force
git commit -m"rebuilding site from ${{ github.sha }}"
git push upstream `git subtree split --prefix=site/public --ignore-joins`:gh-pages --force