mirror of
https://github.com/valitydev/dominant-v2.git
synced 2024-11-06 00:35:21 +00:00
22 lines
393 B
YAML
22 lines
393 B
YAML
|
name: Build and publish Docker image
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- 'master'
|
||
|
- 'epic/**'
|
||
|
pull_request:
|
||
|
branches: ['**']
|
||
|
|
||
|
env:
|
||
|
REGISTRY: ghcr.io
|
||
|
|
||
|
jobs:
|
||
|
build-push:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: valitydev/action-deploy-docker@v2
|
||
|
with:
|
||
|
registry-username: ${{ github.actor }}
|
||
|
registry-access-token: ${{ secrets.GITHUB_TOKEN }}
|