Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,19 @@
name: Publish Docker image

on:
# Runs your workflow when someone creates a Git reference (Git branch or tag) in the workflow's repository.
# https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#create
# Note: An event will not be created when you create more than three tags at once.
create:
tags:
- "*.*.*"

# Runs your workflow when you push a commit or tag.
# https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#push
# Note: An event will not be created when you push more than three tags at once.
push:
branches:
- "*.*.x"
tags:
- "*.*.*"

env:
REGISTRY: docker.io
Expand Down
4 changes: 4 additions & 0 deletions config/config.default.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@

// Add this path prefix to all links and resources
// If this is not defined, auto-detection will try to find it itself
// Example:
// - prefix=null: use auto-detection from request
// - prefix='': use '' for prefix
// - prefix='/xhgui': use '/xhgui'
'path.prefix' => null,

// Setup timezone for date formatting
Expand Down