Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
antedebaas committed Apr 3, 2024
1 parent ca5391b commit b44f6fb
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 48 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/chain.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ jobs:
run: vendor/bin/phpunit
docker:
runs-on: ubuntu-latest
needs: symfony-tests
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/v*.*.*')
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
96 changes: 48 additions & 48 deletions .github/workflows/publishdocker.yml
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
name: Docker build and push
# name: Docker build and push

on:
workflow_run:
workflows: ["Run Actions"]
types:
- completed
push:
tags:
- "v*.*.*"
pull_request:
branches:
- "main"
# on:
# workflow_run:
# workflows: ["Run Actions"]
# types:
# - completed
# push:
# tags:
# - "v*.*.*"
# pull_request:
# branches:
# - "main"

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
${{ secrets.DOCKERHUB_USERNAME }}/dmarc-reports
# generate Docker tags based on the following events/attributes
tags: |
type=semver,pattern={{major}}.{{minor}}.{{patch}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64,linux/arm64
labels: ${{ steps.meta.outputs.labels }}
# jobs:
# docker:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Docker meta
# id: meta
# uses: docker/metadata-action@v5
# with:
# # list of Docker images to use as base name for tags
# images: |
# ${{ secrets.DOCKERHUB_USERNAME }}/dmarc-reports
# # generate Docker tags based on the following events/attributes
# tags: |
# type=semver,pattern={{major}}.{{minor}}.{{patch}}
# type=semver,pattern={{major}}.{{minor}}
# type=semver,pattern={{major}}
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Login to Docker Hub
# if: github.event_name != 'pull_request'
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
# - name: Build and push
# uses: docker/build-push-action@v5
# with:
# context: .
# push: ${{ github.event_name != 'pull_request' }}
# tags: ${{ steps.meta.outputs.tags }}
# platforms: linux/amd64,linux/arm64
# labels: ${{ steps.meta.outputs.labels }}

0 comments on commit b44f6fb

Please sign in to comment.