From e98ea7f812b5a5cae1c7a1877e4a831471ed9a22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Jombart?= Date: Wed, 23 Oct 2024 16:11:28 +0200 Subject: [PATCH] chore: updated github workflows --- .github/workflows/build-and-push-master.yml | 68 ++++++++++----------- .github/workflows/build-and-push-tag.yml | 2 +- 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/.github/workflows/build-and-push-master.yml b/.github/workflows/build-and-push-master.yml index 0042717..ba2a2ac 100644 --- a/.github/workflows/build-and-push-master.yml +++ b/.github/workflows/build-and-push-master.yml @@ -1,34 +1,34 @@ -name: ci - -on: - push: - branches: - - 'master' - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v2 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v1 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v2 - with: - context: . - push: true - platforms: linux/amd64 - tags: davikingcode/nginx-php-fpm:latest +#name: ci +# +#on: +# push: +# branches: +# - 'master' +# +#jobs: +# docker: +# runs-on: ubuntu-latest +# steps: +# - +# name: Checkout +# uses: actions/checkout@v2 +# - +# name: Set up QEMU +# uses: docker/setup-qemu-action@v1 +# - +# name: Set up Docker Buildx +# uses: docker/setup-buildx-action@v1 +# - +# name: Login to DockerHub +# uses: docker/login-action@v1 +# with: +# username: ${{ secrets.DOCKERHUB_USERNAME }} +# password: ${{ secrets.DOCKERHUB_TOKEN }} +# - +# name: Build and push +# uses: docker/build-push-action@v2 +# with: +# context: . +# push: true +# platforms: linux/amd64 +# tags: davikingcode/nginx-php-fpm:latest diff --git a/.github/workflows/build-and-push-tag.yml b/.github/workflows/build-and-push-tag.yml index fa64a54..af232d7 100644 --- a/.github/workflows/build-and-push-tag.yml +++ b/.github/workflows/build-and-push-tag.yml @@ -3,7 +3,7 @@ name: ci on: push: tags: - - 'v*.*.*' + - 'php8.*-v*.*.*' jobs: test: runs-on: ubuntu-latest