This is an automated email from the ASF dual-hosted git repository.
ashishtiwari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new 589bae60 ci: add workflow to push docker image (#2081)
589bae60 is described below
commit 589bae607192a5965833fef0a11c210db8d7500d
Author: Ashish Tiwari <[email protected]>
AuthorDate: Wed Dec 6 18:00:23 2023 +0530
ci: add workflow to push docker image (#2081)
* ci: add workflow to push docker image
Signed-off-by: Ashish Tiwari <[email protected]>
* add license
Signed-off-by: Ashish Tiwari <[email protected]>
* Update .github/workflows/docker-push.yml
---------
Signed-off-by: Ashish Tiwari <[email protected]>
Co-authored-by: Abhishek Choudhary <[email protected]>
---
.github/workflows/docker-push.yml | 61 +++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/.github/workflows/docker-push.yml
b/.github/workflows/docker-push.yml
new file mode 100644
index 00000000..c23ef978
--- /dev/null
+++ b/.github/workflows/docker-push.yml
@@ -0,0 +1,61 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+name: push on dockerhub
+on:
+ workflow_dispatch:
+ inputs:
+ tag:
+ description: 'tag of the image'
+ required: true
+ default: 'latest'
+ branch:
+ description: 'checkout branch to build image'
+ required: true
+ default: 'master'
+
+
+jobs:
+ docker:
+ runs-on: ubuntu-latest
+ steps:
+ -
+ name: Checkout
+ uses: actions/checkout@v3
+ with:
+ ref: '${{ github.event.inputs.branch }}'
+ -
+ name: Set up QEMU
+ uses: docker/setup-qemu-action@v3
+ -
+ name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+ -
+ name: Login to Docker Hub
+ uses: docker/login-action@v3
+ with:
+ username: ${{ secrets.DOCKERHUB_USER }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ -
+ name: Build and push
+ uses: docker/build-push-action@v5
+ with:
+ context: .
+ platforms: linux/amd64,linux/arm64
+ push: true
+ tags: '${{ github.event.inputs.tag }}'