All checks were successful
Build & Release Plugin / release (push) Successful in 8s
25 lines
700 B
YAML
25 lines
700 B
YAML
name: Build & Release Plugin
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
release_notes:
|
|
description: "Optionele release-opmerkingen"
|
|
required: false
|
|
push:
|
|
branches: [ main ]
|
|
paths:
|
|
- 'siti-wash-instructions.php'
|
|
- 'includes/**'
|
|
- 'assets/**'
|
|
- 'languages/**'
|
|
|
|
jobs:
|
|
release:
|
|
uses: roberto/ci-workflows/.gitea/workflows/wp-plugin-release.yml@c6393ed47258d6f040ceeed3994b17b7faa3ef23
|
|
with:
|
|
main_file: siti-wash-instructions.php
|
|
slug: siti-wash-instructions
|
|
release_body: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.release_notes || '' }}
|
|
secrets:
|
|
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }} |