This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
Add rss #54
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: Deploy Site | |
on: | |
push: | |
branches: | |
- main | |
- github-pages | |
- feature/github_pages | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Git checkout | |
uses: actions/checkout@v2 | |
- name: 📰 Publish Site | |
uses: chabad360/hugo-gh-pages@master | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
cname: blog.agramakov.me # Or anything else | |
branch: gh-pages # Or anything else | |
args: --minify | |
siteDir: ${{ github.workspace }}/src | |
# Use this if your site isn't in the root of your repo. |