Merge pull request #351 from Schulich-Ignite/update-links #727
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: Publish Site | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
# Runs on UTC (7 hours ahead) | |
# Run At 02:00am MST on Monday (for blog), Wednesday, Thursday, and Friday | |
- cron: '0 9 * * 1,3,4,5' | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
with: | |
submodules: true | |
- name: Compress Images | |
id: calibre | |
uses: calibreapp/image-actions@main | |
with: | |
githubToken: ${{ secrets.PERSONAL_TOKEN }} | |
compressOnly: true | |
- name: Create New Pull Request If images were compressed | |
if: steps.calibre.outputs.markdown != '' | |
uses: peter-evans/create-pull-request@main | |
with: | |
title: Compressed Images | |
branch-suffix: timestamp | |
commit-message: Compressed Images | |
body: ${{ steps.calibre.outputs.markdown }} | |
- name: Publish Site | |
uses: chabad360/hugo-gh-pages@master | |
with: | |
githubToken: ${{ secrets.PERSONAL_TOKEN }} | |
cname: schulichignite.com |