build luigi image #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: docker | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'v*' | |
- 'private/**' | |
jobs: | |
buildx: | |
env: | |
USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }} | |
PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
BUILD_ARGS: "" | |
PLATFORMS: linux/amd64 | |
BRANCH: ${{ github.head_ref || github.ref_name }} | |
PUSH: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set env | |
run: | |
echo "TAG=$(echo "${{ env.BRANCH }}" | tr -d /)" >> $GITHUB_ENV | |
- uses: actions/checkout@v3 | |
- name: Setup Docker BuildX | |
uses: docker/setup-buildx-action@v1 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
# setup Docker buld action | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to the Docker Registry | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ env.USERNAME }} | |
password: ${{ env.PASSWORD }} | |
- name: Build/Push image to Docker Container Registry | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
tags: docker.io/platform9/openvswitch:${{ env.TAG }} | |
push: ${{ env.PUSH }} | |
build-args: ${{ env.BUILD_ARGS}} | |
platforms: ${{ env.PLATFORMS }} |