update image #436
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
name: CI | |
on: push | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Update theme | |
# (Optional)If you have the theme added as submodule, you can pull it and use the most updated version | |
run: git submodule update --init --recursive | |
- name: Setup hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: "0.81.0" | |
extended: true | |
- name: Build | |
# remove --minify tag if you do not need it | |
# docs: https://gohugo.io/hugo-pipes/minification/ | |
run: hugo | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
personal_token: ${{ secrets.TOKEN }} | |
external_repository: MilaNLProc/MilaNLProc.github.io | |
publish_dir: ./public | |
# keep_files: true | |
user_name: dnozza | |
user_email: nozza.debora@gmail.com | |
publish_branch: main |