Replace inkscape with resvg #13
This file contains hidden or 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: Deploy Jekyll site to Pages | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: [master] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions` | |
bundler-cache: true # runs 'bundler install' and caches installed gems automatically | |
cache-version: 0 # Increment this number if you need to re-download cached gems | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@v5 | |
- name: Get resvg sha | |
id: get-resvg-sha | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
echo "data=$(gh api "repos/RazrFalcon/resvg/git/ref/tags/$(gh api repos/RazrFalcon/resvg/releases/latest --jq '.tag_name')" --jq '.object.sha')" >> "$GITHUB_OUTPUT" | |
- name: Restore resvg | |
id: restore-resvg | |
uses: actions/cache@v4 | |
with: | |
path: | | |
bin/resvg | |
key: resvg-${{ steps.get-resvg-sha.outputs.data }} | |
- if: ${{ steps.restore-resvg.outputs.cache-hit != 'true' }} | |
name: Get resvg | |
id: get-resvg | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
asset="resvg-linux-x86_64.tar.gz" && | |
gh release --repo RazrFalcon/resvg download --pattern "$asset" --dir bin && | |
tar -C bin -xzf "bin/$asset" | |
- name: Build | |
env: | |
JEKYLL_ENV: production | |
run: | | |
./build.sh --baseurl "${{ steps.pages.outputs.base_path }}" | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |