From 451bc1704428f00ebf1ccc6960b4879a7ae67fd8 Mon Sep 17 00:00:00 2001 From: sp9unb Date: Sun, 6 Nov 2022 20:07:49 +0100 Subject: [PATCH] remove unused files --- .github/workflows/ci.yml | 58 ---------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 373143e..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,58 +0,0 @@ -name: Build and publish -on: - push: - branches: - - master - - main - workflow_dispatch: - -jobs: - build_latest: - runs-on: ubuntu-latest - strategy: - matrix: - tag: [php8, php7.1] - image: [carlosalgms/composer-and-node-ci] - latest: [php8] - include: - - tag: php8 - - buildArgs: "" - - - tag: php7.1 - buildArgs: | - PHP_VERSION=7.1 - DEPLOYER_VERSION=v6.6.0 - COMPOSER_VERSION=2.2.18 - env: - TAGGED_IMAGE: ${{ matrix.image }}:${{ matrix.tag }} - TAGS: ${{ matrix.tag == matrix.latest && format('{0}:latest,', matrix.image) || '' }}${{ matrix.image }}:${{ matrix.tag }} - steps: - - uses: actions/checkout@v2 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Login to Docker Hub - id: docker_login - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKER_HUB_USERNAME }} - password: ${{ secrets.DOCKER_HUB_TOKEN }} - - - name: Build and push - id: docker_build - uses: docker/build-push-action@v3 - with: - context: . - pull: true - push: true - platforms: linux/amd64,linux/arm64 - # platforms: linux/amd64,linux/arm64,linux/arm/v7 - cache-from: ${{ env.TAGGED_IMAGE }} - cache-to: type=inline - build-args: ${{ matrix.buildArgs }} - tags: ${{ env.TAGS }}