generated from Templates/Baseline
### 📖 Summary - update syntax ### 📑 Test Plan ✅ CI pipeline tests (Default) ### 💬 Details _No response_ ### 📚 Additional Notes _No response_ Reviewed-on: #28
66 lines
1.3 KiB
YAML
66 lines
1.3 KiB
YAML
when:
|
|
- event: [pull_request, tag, cron]
|
|
- event: push
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
variables:
|
|
- &build_plugin 'gitea.ocram85.com/plugins/gitea-package:next'
|
|
- &default_settings
|
|
user:
|
|
from_secret: gitea_user
|
|
password:
|
|
from_secret: gitea_passwd
|
|
owner: 'plugins'
|
|
package_name: 'dummy_package'
|
|
package_version: '0.1.0'
|
|
file_source: './README.md'
|
|
file_name: 'readme.md'
|
|
#update: "true"
|
|
|
|
depends_on:
|
|
- ci
|
|
|
|
steps:
|
|
default:
|
|
image: *build_plugin
|
|
pull: true
|
|
settings:
|
|
<<: *default_settings
|
|
update: 'true'
|
|
when:
|
|
event: pull_request
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
debug-out:
|
|
image: *build_plugin
|
|
pull: true
|
|
settings:
|
|
<<: *default_settings
|
|
update: 'true'
|
|
debug: 'true'
|
|
when:
|
|
event: pull_request
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
no-update:
|
|
image: *build_plugin
|
|
pull: true
|
|
failure: ignore
|
|
settings:
|
|
<<: *default_settings
|
|
debug: 'true'
|
|
when:
|
|
event: pull_request
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
no-update-debug:
|
|
image: *build_plugin
|
|
pull: true
|
|
failure: ignore
|
|
settings:
|
|
<<: *default_settings
|
|
when:
|
|
event: pull_request
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|