Skip to content

build: switch to system-wide install #97

build: switch to system-wide install

build: switch to system-wide install #97

on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
- uses: actions/setup-python@v5
with:
# Semantic version range syntax or exact version of a Python version
python-version: "3.x"
# Optional - x64 or x86 architecture, defaults to x64
architecture: "x64"
- name: Install gettext
run: sudo apt-get install gettext
- name: Extract project name
if: ${{ steps.release.outputs.release_created }}
run: |
PROJECT_NAME=$(grep -Po '(?<=project\().*(?=\))' CMakeLists.txt)
echo "PROJECT_NAME=$PROJECT_NAME" >> $GITHUB_ENV
- name: Build translations
if: ${{ steps.release.outputs.release_created }}
run: |
python ./kpac i18n --no-merge
- name: Generate wallpaper package
if: ${{ steps.release.outputs.release_created }}
run: |
cd ./package
zip -r ../${{ env.PROJECT_NAME }}-${{steps.release.outputs.tag_name}}.zip .
- name: Upload wallpaper package to release
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload ${{ steps.release.outputs.tag_name }} ./${{ env.PROJECT_NAME }}-${{steps.release.outputs.tag_name}}.zip