chore: Configure Renovate #10
Workflow file for this run
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: build | |
on: | |
pull_request: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v2 | |
- name: Install dependencies | |
run: sudo apt update && sudo apt install -y inkscape x11-apps | |
- name: Generate cursors | |
run: just all | |
- name: Build zips | |
run: just zip | |
- name: Set outputs | |
id: vars | |
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'catppuccin-cursors-${{ steps.vars.outputs.sha_short }}' | |
path: releases/*.zip |