Skip to content

Commit

Permalink
Update pull-request.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
TIVMOF authored Apr 22, 2024
1 parent a37ac1a commit c60a047
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,19 @@ on:

jobs:
main:
uses: codbex/codbex-infra/.github/workflows/application-pull-request.yaml@main
with:
application-name: online_bank
secrets: inherit
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Initialize Buildx
run: |
docker buildx create --name codbex-builder || true
docker buildx use codbex-builder
- name: Build Docker Image
run: |
docker buildx build --tag online_bank -o type=image --platform=linux/arm64,linux/amd64 .

0 comments on commit c60a047

Please sign in to comment.