diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..ce53d74 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +name: Release + +on: + push: + tags: + - 'v*' + +permissions: + contents: read + +jobs: + release: + permissions: + contents: write + uses: owncloud/reusable-workflows/.github/workflows/release.yml@main + with: + app-name: notifications + artifact-glob: build/artifacts/appstore/notifications.tar.gz + secrets: + SIGNING_KEY: ${{ secrets.SIGNING_KEY }} + SIGNING_CERT: ${{ secrets.SIGNING_CERT }} + SIGNING_CHAIN: ${{ secrets.SIGNING_CHAIN }}