Fix colliding process names
This commit is contained in:
parent
d0dd35b913
commit
83d501b195
9 changed files with 13 additions and 12 deletions
8
.github/workflows/laravel.yml
vendored
8
.github/workflows/laravel.yml
vendored
|
|
@ -16,7 +16,7 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
laravel-build:
|
||||
name: "Bake Laravel Container"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
@ -47,10 +47,10 @@ jobs:
|
|||
tags: |
|
||||
matthewbaggett/laravel:${{ matrix.version }}
|
||||
|
||||
latest:
|
||||
laravel-tag-latest:
|
||||
name: "Bake Laravel Container"
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ build ]
|
||||
needs: [ laravel-build ]
|
||||
steps:
|
||||
- uses: docker/login-action@v2
|
||||
name: Login to Docker Hub
|
||||
|
|
@ -60,4 +60,4 @@ jobs:
|
|||
- run: |
|
||||
docker pull matthewbaggett/laravel:8.2
|
||||
docker tag matthewbaggett/laravel:8.2 matthewbaggett/laravel:latest
|
||||
docker push matthewbaggett/laravel:latest
|
||||
docker push matthewbaggett/laravel:latest
|
||||
|
|
|
|||
3
.github/workflows/lint.yml
vendored
3
.github/workflows/lint.yml
vendored
|
|
@ -22,8 +22,9 @@ jobs:
|
|||
- mqtt/Dockerfile
|
||||
- node/Dockerfile
|
||||
- redis/Dockerfile
|
||||
- bouncer/Dockerfile
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: hadolint/hadolint-action@v3.0.0
|
||||
with:
|
||||
dockerfile: ./${{ matrix.dockerfile }}
|
||||
dockerfile: ./${{ matrix.dockerfile }}
|
||||
|
|
|
|||
2
.github/workflows/marshall.yml
vendored
2
.github/workflows/marshall.yml
vendored
|
|
@ -17,7 +17,7 @@ on:
|
|||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
marshall-build:
|
||||
name: "Build Marshall"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
2
.github/workflows/mqtt.yml
vendored
2
.github/workflows/mqtt.yml
vendored
|
|
@ -16,7 +16,7 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
MQTT-build:
|
||||
mqtt-build:
|
||||
name: "MQTT"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
2
.github/workflows/node.yml
vendored
2
.github/workflows/node.yml
vendored
|
|
@ -16,7 +16,7 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
node-build-flavours:
|
||||
node-flavours-build:
|
||||
name: "Build Node Flavours"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
|
|||
2
.github/workflows/php-core.yml
vendored
2
.github/workflows/php-core.yml
vendored
|
|
@ -18,7 +18,7 @@ on:
|
|||
|
||||
jobs:
|
||||
|
||||
php-build-core:
|
||||
php-core-build:
|
||||
name: "Build PHP Core"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
|
|||
2
.github/workflows/php-flavours.yml
vendored
2
.github/workflows/php-flavours.yml
vendored
|
|
@ -19,7 +19,7 @@ on:
|
|||
- completed
|
||||
|
||||
jobs:
|
||||
php-build-flavours:
|
||||
php-flavours-build:
|
||||
name: "Build PHP Flavours"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
|
|
|||
2
.github/workflows/swarm-monitor.yml
vendored
2
.github/workflows/swarm-monitor.yml
vendored
|
|
@ -7,7 +7,7 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
swarm-monitor-build:
|
||||
name: Build Swarm Monitor
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
2
.github/workflows/wordpress.yml
vendored
2
.github/workflows/wordpress.yml
vendored
|
|
@ -16,7 +16,7 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
wordpress-build:
|
||||
name: "Bake Wordpress Container"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Reference in a new issue