Skip to content

Commit

Permalink
Merge pull request xtekky#330 from wengchaoxi/docker-image-ci
Browse files Browse the repository at this point in the history
Add docker image ci support
  • Loading branch information
xtekky committed May 1, 2023
2 parents c05232d + 9b69fc6 commit 56a8f9f
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build and push `gpt4free` docker image

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up qemu
uses: docker/setup-qemu-action@v2

- name: Set up docker buildx
uses: docker/setup-buildx-action@v2

- name: Login to docker hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push docker image
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
${{ secrets.DOCKER_USERNAME }}/gpt4free:latest

0 comments on commit 56a8f9f

Please sign in to comment.