Update main.yml #8
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: Build and Deploy Hugo Site to S3 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Hugo Extended | |
run: | | |
HUGO_VERSION=0.92.2 | |
wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz | |
tar -xzf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz | |
sudo mv hugo /usr/local/bin/ | |
- name: Debug SCSS structure | |
run: | | |
echo "Listing SCSS files:" | |
ls -R assets/scss | |
- name: Build Hugo site | |
run: hugo | |
- name: Deploy to S3 | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: us-east-1 | |
run: aws s3 sync public/ s3://madisonmansouri.com --acl public-read --delete |