Skip to content

[version-4-4] docs: change simple cards to use versioned link DOC-1502 (#4971) #3112

[version-4-4] docs: change simple cards to use versioned link DOC-1502 (#4971)

[version-4-4] docs: change simple cards to use versioned link DOC-1502 (#4971) #3112

name: image_optimizer
# Image Optimizer docs: https://github.com/calibreapp/image-actions
on:
pull_request:
paths:
- "**.jpg"
- "**.jpeg"
- "**.png"
- "**.webp"
concurrency:
group: image-${{ github.ref }}
cancel-in-progress: true
jobs:
run-ci:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
if: ${{ !github.event.pull_request.draft }}
steps:
# If the condition above is not met, aka, the PR is not in draft status, then this step is skipped.
# Because this step is part of the critical path, omission of this step will result in remaining CI steps not gettinge executed.
# As of 8/8/2022 there is now way to enforce this beahvior in GitHub Actions CI.
- run: exit 0
image-optimizer:
name: Image Optimization
needs: [run-ci]
runs-on:
group: 'Doc Runners'
labels: docbot
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Retrieve Credentials
id: import-secrets
uses: hashicorp/vault-action@v3.0.0
with:
url: https://vault.prism.spectrocloud.com
method: approle
roleId: ${{ secrets.VAULT_ROLE_ID }}
secretId: ${{ secrets.VAULT_SECRET_ID }}
secrets: /providers/github/organizations/spectrocloud/token?org_name=spectrocloud token | VAULT_GITHUB_TOKEN
- name: Checkout Repository
uses: actions/checkout@v4
- name: Compress Images
uses: calibreapp/image-actions@main
with:
githubToken: ${{ steps.import-secrets.outputs.VAULT_GITHUB_TOKEN }}
ignorePaths: "node_modules/**,build"