fix broken images and photo scaling #46
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: push-to-live-branch | |
on: | |
# Runs this workflow when a pull-request to main is merged | |
pull_request: | |
types: | |
- closed | |
branches: [main] | |
push: | |
branches: [main] | |
# Allows running this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
if: ${{ github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' || github.event_name == 'push'}} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Use Node | |
uses: actions/setup-node@master | |
with: | |
node-version: "14.x" | |
- name: Install node dependencies | |
run: npm install -g sass | |
# Compile the SCSS files into CSS | |
- name: Compile CSS | |
run: | | |
echo Beginning CSS compilation! | |
mkdir ./css | |
sass --no-source-map --update scss:css | |
# Clean up repository | |
- name: Clean repo | |
run: | | |
echo Cleaning repository! | |
rm -f .gitignore | |
rm -rf ./scss | |
rm -rf ./scripts | |
# Deploy Site | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: . | |
branch: gh-pages |