mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Merge pull request #7509 from ToolJet/docker-ce-release-fix
Update tooljet-release-docker-image-build.yml
This commit is contained in:
commit
fcefc7de91
1 changed files with 2 additions and 54 deletions
|
|
@ -7,8 +7,8 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
job-to-run:
|
job-to-run:
|
||||||
description: Enter the job name (tooljet-ce/tooljet-server-ce/try-tooljet)
|
description: Enter the job name (tooljet-ce/tooljet-server-ce)
|
||||||
options: ["tooljet-ce", "try-tooljet", "tooljet-server-ce"]
|
options: ["tooljet-ce", "tooljet-server-ce"]
|
||||||
required: true
|
required: true
|
||||||
image:
|
image:
|
||||||
description: "Enter the latest image tag"
|
description: "Enter the latest image tag"
|
||||||
|
|
@ -297,56 +297,4 @@ jobs:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
curl -X POST -H 'Content-type: application/json' --data "{\"text\":\"$message\"}" ${{ secrets.SLACK_WEBHOOK_URL }}
|
curl -X POST -H 'Content-type: application/json' --data "{\"text\":\"$message\"}" ${{ secrets.SLACK_WEBHOOK_URL }}
|
||||||
|
|
||||||
try-tooljet:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.job-to-run == 'try-tooljet' }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
ref: main
|
|
||||||
|
|
||||||
# Create Docker Buildx builder with platform configuration
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
run: |
|
|
||||||
mkdir -p ~/.docker/cli-plugins
|
|
||||||
curl -SL https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx
|
|
||||||
chmod a+x ~/.docker/cli-plugins/docker-buildx
|
|
||||||
docker buildx create --name mybuilder --platform linux/arm64,linux/amd64,linux/amd64/v2,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
|
|
||||||
docker buildx use mybuilder
|
|
||||||
|
|
||||||
- name: Set DOCKER_CLI_EXPERIMENTAL
|
|
||||||
run: echo "DOCKER_CLI_EXPERIMENTAL=enabled" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: use mybuilder buildx
|
|
||||||
run: docker buildx use mybuilder
|
|
||||||
|
|
||||||
- name: Docker Login
|
|
||||||
uses: docker/login-action@v1
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
||||||
|
|
||||||
- name: Build and Push Docker image
|
|
||||||
uses: docker/build-push-action@v4
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: docker/try-tooljet.Dockerfile
|
|
||||||
push: true
|
|
||||||
tags: tooljet/try:${{ github.event.inputs.image }},tooljet/try:latest
|
|
||||||
platforms: linux/amd64
|
|
||||||
env:
|
|
||||||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
||||||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
||||||
|
|
||||||
- name: Send Slack Notification
|
|
||||||
run: |
|
|
||||||
if [[ "${{ job.status }}" == "success" ]]; then
|
|
||||||
message="Job '${{ env.JOB_NAME }}' succeeded! tooljet/try:${{ github.event.inputs.image }}"
|
|
||||||
else
|
|
||||||
message="Job '${{ env.JOB_NAME }}' failed! tooljet/try:${{ github.event.inputs.image }}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
curl -X POST -H 'Content-type: application/json' --data "{\"text\":\"$message\"}" ${{ secrets.SLACK_WEBHOOK_URL }}
|
curl -X POST -H 'Content-type: application/json' --data "{\"text\":\"$message\"}" ${{ secrets.SLACK_WEBHOOK_URL }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue