Skip to content

Commit

Permalink
Create prepare.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SiskaPavel authored Oct 24, 2023
1 parent cfc02c2 commit 7b00a57
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/prepare.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Docker Image CI

on:
push:
branches: *
pull_request:
branches: *

jobs:
job1:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build $DOCKER_OPTS -t $DOCKER_IMAGE:ol8 --build-arg OS_DISTRO=oraclelinux --build-arg OS_RELEASE=8 -f docker/Dockerfile .
job2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build $DOCKER_OPTS -t $DOCKER_IMAGE:ol9 --build-arg OS_DISTRO=oraclelinux --build-arg OS_RELEASE=9 -f docker/Dockerfile .
job3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build $DOCKER_OPTS -t $DOCKER_IMAGE:rl9 --build-arg OS_DISTRO=rockylinux --build-arg OS_RELEASE=9 -f docker/Dockerfile .

0 comments on commit 7b00a57

Please sign in to comment.