25 lines
666 B
YAML
25 lines
666 B
YAML
name: Build & Release Plugin
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
release_notes:
|
|
description: "Optionele release-opmerkingen"
|
|
required: false
|
|
push:
|
|
branches: [ main ]
|
|
paths:
|
|
- 'siti-category-thumbnails.php'
|
|
- 'includes/**'
|
|
|
|
jobs:
|
|
release:
|
|
uses: roberto/ci-workflows/.gitea/workflows/wp-plugin-release.yml@bba19f38933f5c468d65ec9b0dc7eff9505de335
|
|
with:
|
|
main_file: siti-category-thumbnails.php
|
|
slug: siti-category-thumbnails
|
|
release_body: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.release_notes || '' }}
|
|
secrets:
|
|
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
|