From aa0f96c8dc0be6de962915d0e1e55e1552cb7047 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Wed, 25 Mar 2026 10:02:26 +0100 Subject: [PATCH] add test workflow --- .github/workflows/tmp.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/tmp.yml diff --git a/.github/workflows/tmp.yml b/.github/workflows/tmp.yml new file mode 100644 index 0000000..eed5d06 --- /dev/null +++ b/.github/workflows/tmp.yml @@ -0,0 +1,26 @@ +name: Test Icon script + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + macos-release-build: + runs-on: macos-15-intel + steps: + - uses: actions/checkout@v4 + - name: install dependencies + run: brew install gtk4 libadwaita imagemagick librsvg + - name: Make icns + run: scripts/makeicns.sh + + macos-aarch64-release-build: + runs-on: macos-14 + steps: + - uses: actions/checkout@v4 + - name: install dependencies + run: brew install gtk4 libadwaita imagemagick librsvg + - name: Make icns + run: scripts/makeicns.sh