Files
AdventureLog/.github/workflows/images-release.yml
Sean Morley ddcecd42df Enhance GitHub Actions workflows and improve error handling in backend services
- 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.
2026-06-27 13:02:04 -04:00

20 lines
340 B
YAML

name: Build and push release images
on:
release:
types: [released]
permissions:
contents: read
packages: write
actions: write
jobs:
build:
uses: ./.github/workflows/_build-images.yml
with:
tag: ${{ github.event.release.tag_name }}
filter_paths: false
include_latest_tag: true
secrets: inherit