Corrected typo: Replaced “ijhat” with “i-hat” (#441) #373
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: Sync Assets | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
lfs: true # Fetch git lfs objects | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
submodules: true # Fetch Hugo themes (true OR recursive) | |
- name: Checkout LFS objects | |
run: git lfs checkout | |
- name: Sync bucket | |
uses: ./.github/actions/sync | |
env: | |
ACCESS_KEY: ${{ secrets.LINODE_ACCESS_KEY }} | |
SECRET_KEY: ${{ secrets.LINODE_SECRET_KEY }} | |
BUCKET: 3b1b-posts | |
REGION: us-east-1 | |
SOURCE_DIR: 'public/' |