From 3e4ca116df3942cbb250c9d37ebeae3ef4cb4f02 Mon Sep 17 00:00:00 2001 From: Denis Palnitsky Date: Wed, 22 May 2024 14:22:54 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20feat:=20Release=20workflow=20for?= =?UTF-8?q?=20versioning=20docker=20images=20(#40)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * release github actions workflow * test workflows * test with my repo name * rollback tests --- .github/workflows/docker-build-workflow.yaml | 62 ++++++++++++++++++++ .github/workflows/images.yaml | 53 ++--------------- .github/workflows/release.yaml | 13 ++++ 3 files changed, 80 insertions(+), 48 deletions(-) create mode 100644 .github/workflows/docker-build-workflow.yaml create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/docker-build-workflow.yaml b/.github/workflows/docker-build-workflow.yaml new file mode 100644 index 0000000..f9b9a71 --- /dev/null +++ b/.github/workflows/docker-build-workflow.yaml @@ -0,0 +1,62 @@ +name: Docker Dev Images Build + +on: + workflow_call: + inputs: + tag: + description: 'Tag for the Docker images' + required: true + type: string + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + strategy: + matrix: + include: + - target: main + file: Dockerfile + image_name: librechat-rag-api-dev + - target: lite + file: Dockerfile.lite + image_name: librechat-rag-api-dev-lite + + steps: + # Check out the repository + - name: Checkout + uses: actions/checkout@v4 + + # Set up QEMU + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + # Set up Docker Buildx + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + # Log in to GitHub Container Registry + - name: Log in to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + # Build and push Docker images for each target + - name: Build and push Docker images + uses: docker/build-push-action@v5 + with: + context: . + file: ${{ matrix.file }} + push: true + # tags: | + # ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ github.sha }} + # ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ inputs.tag }} + tags: | + ghcr.io/denispalnitsky/${{ matrix.image_name }}:${{ github.sha }} + ghcr.io/denispalnitsky/${{ matrix.image_name }}:${{ inputs.tag }} + platforms: linux/amd64,linux/arm64 + target: ${{ matrix.target }} \ No newline at end of file diff --git a/.github/workflows/images.yaml b/.github/workflows/images.yaml index 9c0d7ba..bfc5743 100644 --- a/.github/workflows/images.yaml +++ b/.github/workflows/images.yaml @@ -7,53 +7,10 @@ on: - 'README.md' branches: - main + jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - strategy: - matrix: - include: - - target: main - file: Dockerfile - image_name: librechat-rag-api-dev - - target: lite - file: Dockerfile.lite - image_name: librechat-rag-api-dev-lite - - steps: - # Check out the repository - - name: Checkout - uses: actions/checkout@v4 - - # Set up QEMU - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - # Set up Docker Buildx - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - # Log in to GitHub Container Registry - - name: Log in to GitHub Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - # Build and push Docker images for each target - - name: Build and push Docker images - uses: docker/build-push-action@v5 - with: - context: . - file: ${{ matrix.file }} - push: true - tags: | - ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:${{ github.sha }} - ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:latest - platforms: linux/amd64,linux/arm64 - target: ${{ matrix.target }} + call-docker-build: + uses: ./.github/workflows/docker-build-workflow.yaml + with: + tag: latest \ No newline at end of file diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..c4861f7 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,13 @@ +name: Docker Dev Images Release + +on: + workflow_dispatch: + push: + tags: + - '*' + +jobs: + call-docker-build: + uses: ./.github/workflows/docker-build-workflow.yaml + with: + tag: ${{ github.ref_name }} \ No newline at end of file