summaryrefslogtreecommitdiffstats
path: root/.github/workflows/publish-workflow.yaml
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2024-11-18 02:53:50 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2024-11-18 02:53:50 +0100
commit2a7770ea51237fb2a34da7b853c82139c75ca69b (patch)
treea515f0051110ecc46d2b46a12ff9a3cb1bfe8e4c /.github/workflows/publish-workflow.yaml
parentUpdate docker tags in workfloe for slim images, (diff)
downloadgpt4free-2a7770ea51237fb2a34da7b853c82139c75ca69b.tar
gpt4free-2a7770ea51237fb2a34da7b853c82139c75ca69b.tar.gz
gpt4free-2a7770ea51237fb2a34da7b853c82139c75ca69b.tar.bz2
gpt4free-2a7770ea51237fb2a34da7b853c82139c75ca69b.tar.lz
gpt4free-2a7770ea51237fb2a34da7b853c82139c75ca69b.tar.xz
gpt4free-2a7770ea51237fb2a34da7b853c82139c75ca69b.tar.zst
gpt4free-2a7770ea51237fb2a34da7b853c82139c75ca69b.zip
Diffstat (limited to '')
-rw-r--r--.github/workflows/publish-workflow.yaml18
1 files changed, 10 insertions, 8 deletions
diff --git a/.github/workflows/publish-workflow.yaml b/.github/workflows/publish-workflow.yaml
index 1a1edaab..67d9dc53 100644
--- a/.github/workflows/publish-workflow.yaml
+++ b/.github/workflows/publish-workflow.yaml
@@ -37,26 +37,28 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_PAT }}
- - name: Build and push image
+ - name: Build and push small images
uses: docker/build-push-action@v5
with:
context: .
- file: docker/Dockerfile
+ file: docker/Dockerfile-slim
platforms: linux/amd64,linux/arm64
push: true
- tags: ${{ steps.metadata.outputs.tags }}
+ tags: |
+ hlohaus789/g4f:latest-slim
+ hlohaus789/g4f:${{ github.ref_name }}-slim
labels: ${{ steps.metadata.outputs.labels }}
build-args: |
G4F_VERSION=${{ github.ref_name }}
- - name: Build and push slim image
+
+ - name: Build and push big images
uses: docker/build-push-action@v5
with:
context: .
- file: docker/Dockerfile-slim
+ file: docker/Dockerfile
+ platforms: linux/amd64,linux/arm64
push: true
- tags: |
- hlohaus789/g4f:slim-latest
- hlohaus789/g4f:${{ github.ref_name }}-slim
+ tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
build-args: |
G4F_VERSION=${{ github.ref_name }} \ No newline at end of file