Store All Icon themes in <caffeine-path>/icons/hicolor/scalable/actions and uses system icons with fallback if not available #107
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
# This workflow will test the build system, then build the extension and upload an artifact | |
name: Test build system and upload extension | |
on: | |
pull_request: | |
branches: '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: make gettext gnome-shell | |
version: 1.0 | |
- name: Test extension builds from scratch | |
run: | | |
make build | |
- name: Test extension installs | |
run: | | |
make install | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: caffeine@patapon.info.zip | |
path: caffeine@patapon.info.zip | |
- name: Test build area clean | |
run: | | |
make clean |