Skip to content

Commit 21a55f8

Browse files
author
Mikhail Savelyev
committed
(WIP build and push docker images on push to git)
1 parent b386ee1 commit 21a55f8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build Docker Images
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
env:
8+
ORACLE_DOCKER_USERNAME: ${{ secrets.ORACLE_DOCKER_USERNAME }}
9+
ORACLE_DOCKER_PASSWORD: ${{ secrets.ORACLE_DOCKER_PASSWORD }}
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v3
18+
19+
- name: Set up Docker Buildx
20+
uses: docker/setup-buildx-action@v2
21+
22+
- name: Build and push Docker image
23+
uses: ./.github/actions/build-docker-image
24+
with:
25+
image: api

0 commit comments

Comments
 (0)