mirror of
https://github.com/valitydev/anapi-v2.git
synced 2024-11-06 08:35:19 +00:00
18 lines
367 B
YAML
18 lines
367 B
YAML
name: Deploy Docker Image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'main'
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
jobs:
|
|
deploy:
|
|
uses: valitydev/base-workflow/.github/workflows/maven-service-deploy.yml@v1
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
mm-webhook-url: ${{ secrets.MATTERMOST_WEBHOOK_URL }} |