Skip to content

Commit

Permalink
Merge branch '2.3' of github.com:abcdesktopio/webModules into 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandredevely committed Nov 28, 2024
2 parents 26a1ef8 + 6729a2e commit 0aea818
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ env.branch }}
fetch-depth: 0

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -42,14 +45,31 @@ jobs:
- name: Build and push builder image
uses: docker/build-push-action@v5
with:
file: Dockerfile
file: Dockerfile.builder
context: .
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true
build-args: |
BASE_IMAGE_RELEASE=latest
BASE_IMAGE=ubuntu
BRANCH=${{ env.branch }}
NODE_MAJOR=${{ env.node_version }}
tags: |
abcdesktopio/oc.nginx.builder:${{ env.imagetag }}
- name: Build and push oc.nginx image
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
platforms: linux/amd64
push: true
build-args: |
BASE_IMAGE_RELEASE=${{ env.imagetag }}
BASE_IMAGE=abcdesktopio/oc.nginx.builder
BRANCH=${{ env.branch }}
TARGET=dev
NODE_MAJOR=${{ env.node_version }}
tags: |
abcdesktopio/oc.nginx:${{ env.imagetag }}

0 comments on commit 0aea818

Please sign in to comment.