From e58ceb7b10de4138a5ab4fa5c05ea7e2d0533cfd Mon Sep 17 00:00:00 2001 From: Jauder Ho Date: Mon, 9 Aug 2021 11:18:20 +0000 Subject: [PATCH] Removed docker-3.0.yml from 3.1dev branch --- .github/workflows/docker-3.0.yml | 67 -------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 .github/workflows/docker-3.0.yml diff --git a/.github/workflows/docker-3.0.yml b/.github/workflows/docker-3.0.yml deleted file mode 100644 index 2b0d6ec..0000000 --- a/.github/workflows/docker-3.0.yml +++ /dev/null @@ -1,67 +0,0 @@ -name: docker-3.0 - -on: - push: - branches: - - 3.0 - workflow_dispatch: - schedule: - - cron: "0 8 * * 1" - -env: - BUILD_VERSION: "3.0" - DOCKER_CLI_EXPERIMENTAL: enabled - #REPOSITORY: ${{ github.actor }}/${{ github.workflow }} - REPOSITORY: ${{ github.actor }}/testssl.sh - -jobs: - - deploy: - runs-on: ubuntu-20.04 - - steps: - - name: Source checkout - uses: actions/checkout@v2.3.4 - - - name: Setup QEMU - id: qemu - uses: docker/setup-qemu-action@v1.2.0 - - - name: Setup Buildx - id: buildx - uses: docker/setup-buildx-action@v1 - - - name: Set Docker metadata - id: docker_meta - uses: docker/metadata-action@v3 - with: - images: ${{ env.REPOSITORY }} - labels: | - org.opencontainers.image.version=${{ env.BUILD_VERSION }} - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.title=${{ env.REPOSITORY }} - - - name: GitHub login - if: ${{ github.event_name != 'pull_request' }} - uses: docker/login-action@v1.10.0 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v2.6.1 - with: - push: ${{ github.event_name != 'pull_request' }} - #context: ${{ github.workflow }} - #context: docker - context: . - file: Dockerfile.git - #platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6 - platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v7,linux/arm/v6,linux/ppc64le - build-args: BUILD_VERSION - cache-from: type=gha, scope=${{ github.workflow }} - cache-to: type=gha, scope=${{ github.workflow }} - labels: ${{ steps.docker_meta.outputs.labels }} - tags: | - ghcr.io/${{ env.REPOSITORY }}:${{ env.BUILD_VERSION }}