We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b386ee1 commit 21a55f8Copy full SHA for 21a55f8
.github/workflows/build-docker.yaml
@@ -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