diff options
author | xtekky <98614666+xtekky@users.noreply.github.com> | 2023-08-07 13:37:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-07 13:37:29 +0200 |
commit | 08291e8cde3b7636712da065f408d25e5fab3385 (patch) | |
tree | 519136d633230253d748ef1318524818b0ba09bd /.github | |
parent | Merge pull request #693 from ramonvc/main (diff) | |
download | gpt4free-08291e8cde3b7636712da065f408d25e5fab3385.tar gpt4free-08291e8cde3b7636712da065f408d25e5fab3385.tar.gz gpt4free-08291e8cde3b7636712da065f408d25e5fab3385.tar.bz2 gpt4free-08291e8cde3b7636712da065f408d25e5fab3385.tar.lz gpt4free-08291e8cde3b7636712da065f408d25e5fab3385.tar.xz gpt4free-08291e8cde3b7636712da065f408d25e5fab3385.tar.zst gpt4free-08291e8cde3b7636712da065f408d25e5fab3385.zip |
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 21740635..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,37 +0,0 @@ -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 |