mirror of
https://github.com/logos-storage/logos-storage-marketplace-ui.git
synced 2026-01-07 07:53:10 +00:00
* Add Dockerfile (#53) * Add Docker reusable workflow (#53) * Add Docker workflow (#53) * Add Readme for Docker builds (#53) * Add EXPOSE instruction to Dockerfile (#53)
27 lines
462 B
YAML
27 lines
462 B
YAML
name: Docker
|
|
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- 'v*.*.*'
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
- '.gitignore'
|
|
- 'docker/**'
|
|
- '!docker/Dockerfile'
|
|
- '.github/**'
|
|
- '!.github/workflows/docker.yml'
|
|
- '!.github/workflows/docker-reusable.yml'
|
|
- 'LICENSE-*'
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
build-and-push:
|
|
name: Build and Push
|
|
uses: ./.github/workflows/docker-reusable.yml
|
|
secrets: inherit
|