mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-08-01 08:18:44 -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.
20 lines
340 B
YAML
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
|