let's try that again
This commit is contained in:
parent
6d027f41fd
commit
9944a93dfa
1 changed files with 8 additions and 20 deletions
28
.github/workflows/docker.yml
vendored
28
.github/workflows/docker.yml
vendored
|
@ -11,9 +11,6 @@ on:
|
|||
jobs:
|
||||
publish_api:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
architecture: [linux/amd64, linux/arm64]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -35,15 +32,12 @@ jobs:
|
|||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: ./api
|
||||
platforms: ${{ matrix.architecture }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: ghcr.io/janderedev/automod:api-${{ matrix.architecture }}
|
||||
tags: ghcr.io/janderedev/automod:api
|
||||
|
||||
publish_web:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
architecture: [linux/amd64, linux/arm64]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -65,15 +59,12 @@ jobs:
|
|||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: ./web
|
||||
platforms: ${{ matrix.architecture }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: ghcr.io/janderedev/automod:web-${{ matrix.architecture }}
|
||||
tags: ghcr.io/janderedev/automod:web
|
||||
|
||||
publish_bridge:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
architecture: [linux/amd64, linux/arm64]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -95,15 +86,12 @@ jobs:
|
|||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: ./bridge
|
||||
platforms: ${{ matrix.architecture }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: ghcr.io/janderedev/automod:bridge-${{ matrix.architecture }}
|
||||
tags: ghcr.io/janderedev/automod:bridge
|
||||
|
||||
publish_bot:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
architecture: [linux/amd64, linux/arm64]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -125,6 +113,6 @@ jobs:
|
|||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: ./bot
|
||||
platforms: ${{ matrix.architecture }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: ghcr.io/janderedev/automod:bot-${{ matrix.architecture }}
|
||||
tags: ghcr.io/janderedev/automod:bot
|
Loading…
Reference in a new issue