Skip to content

Commit

Permalink
update image for version 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cybernop committed Nov 7, 2023
1 parent 8600b48 commit 691f6ec
Showing 1 changed file with 5 additions and 26 deletions.
31 changes: 5 additions & 26 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ env:
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
SUSHI_VERSION: "3.5.0"

jobs:
node-base:
Expand Down Expand Up @@ -126,17 +127,6 @@ jobs:
strategy:
matrix:
base: [alpine, ubuntu]
sushi-version:
[
"3.5.0",
"3.4.0",
"3.3.3",
"3.3.0",
"3.2.0",
"3.1.0",
"3.0.0",
"2.10.2",
]
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -168,7 +158,7 @@ jobs:
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/fsh-sushi
tags: |
${{ matrix.sushi-version }}-${{ matrix.base }}
${{ env.SUSHI_VERSION }}-${{ matrix.base }}
# Build and push Docker image with Buildx (push on tag)
# https://github.com/docker/build-push-action
Expand All @@ -180,7 +170,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: fsh-sushi-${{ matrix.base }}
build-args: SUSHI_VERSION=${{ matrix.sushi-version }}
build-args: SUSHI_VERSION=${{ env.SUSHI_VERSION }}

ig-publisher:
name: IG Publisher
Expand All @@ -189,17 +179,6 @@ jobs:
strategy:
matrix:
base: [alpine, ubuntu]
sushi-version:
[
"3.5.0",
"3.4.0",
"3.3.3",
"3.3.0",
"3.2.0",
"3.1.0",
"3.0.0",
"2.10.2",
]
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -231,7 +210,7 @@ jobs:
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/ig-publisher
tags: |
${{ matrix.sushi-version }}-${{ matrix.base }}
${{ env.SUSHI_VERSION }}-${{ matrix.base }}
# Build and push Docker image with Buildx (push on tag)
# https://github.com/docker/build-push-action
Expand All @@ -243,4 +222,4 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: ig-publisher-${{ matrix.base }}
build-args: SUSHI_VERSION=${{ matrix.sushi-version }}
build-args: SUSHI_VERSION=${{ env.SUSHI_VERSION }}

0 comments on commit 691f6ec

Please sign in to comment.