Skip to content

fix: adding webhook, snake_case <-> camelCase transform #29

fix: adding webhook, snake_case <-> camelCase transform

fix: adding webhook, snake_case <-> camelCase transform #29

Workflow file for this run

name: Release Package & Docker Images
on:
push:
branches:
- main
# - release
jobs:
setup-and-test:
uses: ./.github/workflows/unit-test.yml
with:
os: ubuntu-latest
secrets: inherit
publish-python-package:
if: github.repository == 'Admyral-Security/admyral'
needs:
- setup-and-test
uses: ./.github/workflows/publish-to-pypi.yml
# Set permissions for trusted publishing.
permissions:
id-token: write
contents: read
secrets: inherit
publish-docker-images:
if: github.repository == 'Admyral-Security/admyral'
needs:
- setup-and-test
uses: ./.github/workflows/publish-docker-hub.yml
secrets: inherit