diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 0000000..1c5e0a0 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,40 @@ +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 }} + + - 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: 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 diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..0ac88e5 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.4.1" +} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..726e700 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,16 @@ +{ + "packages": { + ".": { + "changelog-path": "CHANGELOG.md", + "release-type": "simple", + "extra-files": [ + { + "type": "json", + "path": "package/metadata.json", + "jsonpath": "$.KPlugin.Version" + } + ] + } + }, + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" +}