Skip to content

feat: use gpt 4 turbo #57

feat: use gpt 4 turbo

feat: use gpt 4 turbo #57

Workflow file for this run

name: Docker Image Release
on:
push:
branches:
- 'main'
jobs:
docker:
name: Latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build docker image
run: DOCKER_BUILDKIT=1 docker build --progress=plain -t ghcr.io/${GITHUB_REPOSITORY}/${GITHUB_REF##*/} .
- name: Tag image
run: docker tag ghcr.io/${GITHUB_REPOSITORY}/${GITHUB_REF##*/} ghcr.io/agencyenterprise/docstring-auditor:latest
- name: Push image to github
run: docker push ghcr.io/agencyenterprise/docstring-auditor:latest