Auto-gen: README.md - 11/18/2024 04:30:57 #351
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: github-pages | |
on: | |
push: | |
branches: | |
- main # Set a branch to deploy | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout metrics.aspose.ai repo | |
uses: actions/checkout@main | |
with: | |
repository: Aspose/metrics.aspose.ai | |
token: ${{ secrets.REPO_TOKEN }} | |
#submodules: true # Fetch Hugo themes (true OR recursive) | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2.4.13 | |
with: | |
hugo-version: '0.101.0' | |
extended: true | |
- name: Build | |
run: hugo --config "config.toml" --cleanDestinationDir --minify | |
- name: Deploy Home to S3 | |
run: hugo deploy --maxDeletes -1 --target "Home" | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_ACCESS }} | |
- name: Invalidate CloudFront | |
uses: chetan/invalidate-cloudfront-action@v2 | |
env: | |
DISTRIBUTION: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} | |
PATHS: '/*' | |
AWS_REGION: 'us-west-2' | |
AWS_ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_ACCESS }} |