gpt4free/.github/workflows/publish-workflow.yaml

46 lines
1.2 KiB
YAML
Raw Normal View History

2023-10-13 17:12:15 +00:00
name: Publish Docker image
on:
push:
tags:
- '**'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
2023-10-13 17:12:15 +00:00
- name: Get metadata for Docker
id: metadata
uses: docker/metadata-action@v5
with:
images: |
hlohaus789/g4f
ghcr.io/${{ github.repository }}
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
2023-10-13 17:12:15 +00:00
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
2023-10-14 13:52:47 +00:00
password: ${{ secrets.GHCR_PAT }}
2023-10-13 17:12:15 +00:00
- name: Build and push image
uses: docker/build-push-action@v5
with:
context: .
2023-12-06 11:20:19 +00:00
file: docker/Dockerfile
2023-10-13 17:12:15 +00:00
push: true
tags: ${{ steps.metadata.outputs.tags }}
2023-10-14 13:38:38 +00:00
labels: ${{ steps.metadata.outputs.labels }}
build-args: |
G4F_VERSION=${{ github.ref_name }}