Skip to content

Slides-Staging

Slides-Staging #38

name: Slides-Staging
# Controls when the action will run.
on:
workflow_dispatch:
jobs:
deploy:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v2
with:
repository: aspose-cloud/products.aspose.cloud
token: ${{ secrets.REPO_TOKEN }}
fetch-depth: 0
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.101.0'
extended: true
- name: Install autoprefixer
run: npm install -D --save autoprefixer
- name: Install postcss-cli
run: npm install -D --save postcss-cli
- name: Find and Replace
run: LC_ALL=C find . -type f -name '*.md' -exec sed -i '' s/url:/url_ignore:/g {} +
- name: Find and Replace domain name
run: LC_ALL=C find . -type f -name '*.md' -exec sed -i '' s/products.aspose.cloud:/products-qa.aspose.cloud:/g {} +
- name: Build Slides
run: hugo --config "./config/slides-stage.toml" -b "https://products-qa.aspose.cloud/slides" --cleanDestinationDir --minify --templateMetrics --templateMetricsHints
- name: Deploy Slides to S3
run: hugo deploy --config "./config/slides-stage.toml" --target "slides" --maxDeletes -1 --force
env:
AWS_ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_ACCESS }}