Publish SNAPSHOTs #1479
This file contains hidden or 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
| # 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: "Publish SNAPSHOTs" | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Deploy every day | |
| workflow_dispatch: | |
| env: | |
| REGISTRY: ghcr.io | |
| OWNER: apache | |
| IMAGE_REPO: flink-docker | |
| jobs: | |
| snapshot: | |
| # Do not run for forks. | |
| if: github.repository_owner == 'apache' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| strategy: | |
| max-parallel: 1 | |
| matrix: | |
| java_version: [8, 11, 17, 21] | |
| flink_version: [ 2.2-SNAPSHOT, 2.1-SNAPSHOT, 2.0-SNAPSHOT, 1.20-SNAPSHOT ] | |
| include: | |
| - flink_version: 2.2-SNAPSHOT | |
| branch: dev-master | |
| - flink_version: 2.1-SNAPSHOT | |
| branch: dev-2.1 | |
| - flink_version: 2.0-SNAPSHOT | |
| branch: dev-2.0 | |
| - flink_version: 1.20-SNAPSHOT | |
| branch: dev-1.20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ matrix.branch }} | |
| - name: "Set up QEMU" | |
| uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 | |
| - name: "Set up Docker Buildx" | |
| uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f | |
| - name: "Log in to the Container registry" | |
| uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "Prepare Dockerfiles and set env" | |
| run: | | |
| IMAGE_NAME=${{ matrix.flink_version }}-scala_2.12-java${{ matrix.java_version }} | |
| echo "IMAGE_NAME=${IMAGE_NAME}" >> $GITHUB_ENV | |
| echo "TAG=${REGISTRY}/${OWNER}/${IMAGE_REPO}:${IMAGE_NAME}-debian" >> $GITHUB_ENV | |
| ./add-custom.sh -u "https://s3.amazonaws.com/flink-nightly/flink-${{ matrix.flink_version }}-bin-scala_2.12.tgz" -j ${{ matrix.java_version }} -n ${IMAGE_NAME} | |
| echo "DOCKER_FILE=$(ls ./*/*${{ matrix.flink_version }}*${{ matrix.java_version }}*/Dockerfile)" >> $GITHUB_ENV | |
| - name: "List environment variables" | |
| run: env | |
| - name: "Build and push Docker images (supported platforms)" | |
| uses: docker/bake-action@6614cfa25eff9a0b2b2697efb0b6159e7680d584 | |
| with: | |
| # bake-action >= v7 defaults an unset "source" to the workflow's git | |
| # context and bakes it as a remote ref, which reads docker-bake.hcl and | |
| # the build context from the triggering commit on master. This workflow | |
| # needs the local working tree instead: the Dockerfile is generated at | |
| # runtime by add-custom.sh, and the docker-metadata-action target it | |
| # inherits is only defined in the checked-out dev-* branch. Pin to the | |
| # local source to restore the pre-v7 behavior. | |
| source: . | |
| files: | | |
| .github/workflows/docker-bake.hcl | |
| ${{ steps.meta.outputs.bake-file }} | |
| targets: bake-platform | |
| push: ${{ github.event_name != 'pull_request' }} |