mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-08-01 16:29:07 -04:00
- Added permissions for GitHub Actions workflows to manage contents, packages, and actions. - Refactored SearchValidationError and IntegrationError classes to include custom messages and status codes. - Improved logging in GlobalSearchView and WandererIntegrationViewSet to capture validation errors and exceptions more effectively. - Updated error responses in billing views to provide user-friendly messages while logging detailed exceptions.
21 lines
303 B
YAML
21 lines
303 B
YAML
name: Build and push beta images
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- development
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
actions: write
|
|
|
|
jobs:
|
|
build:
|
|
uses: ./.github/workflows/_build-images.yml
|
|
with:
|
|
tag: beta
|
|
filter_paths: true
|
|
secrets: inherit
|