mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-25 01:44:28 +01:00
* initial cleanup of github workflows * only run pr-label workflow on push to master * move docker ci/release summaries to scripts * add XS label for PR's under 2 lines * draft test job for Docker CI * fix & activate Docker CI test job * add debug step to docker CI * fix Docker CI test container env * Docker CI build matrix * fixup build summaries * fix pipes in summary * optimize Dockerfile for layer caching * more markdown escaping * add gha cache scopes * add Docker CI cache clean workflow
82 lines
2.6 KiB
YAML
82 lines
2.6 KiB
YAML
name: Docker Release
|
|
|
|
on:
|
|
release:
|
|
types: [ published, edited ]
|
|
|
|
workflow_dispatch:
|
|
inputs:
|
|
no_cache:
|
|
type: boolean
|
|
description: 'Build from scratch, without using cached layers'
|
|
|
|
env:
|
|
IMAGE_NAME: auto-gpt
|
|
DEPLOY_IMAGE_NAME: ${{ secrets.DOCKER_USER }}/auto-gpt
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Log in to Docker hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
# slashes are not allowed in image tags, but can appear in git branch or tag names
|
|
- id: sanitize_tag
|
|
name: Sanitize image tag
|
|
run: echo tag=${raw_tag//\//-} >> $GITHUB_OUTPUT
|
|
env:
|
|
raw_tag: ${{ github.ref_name }}
|
|
|
|
- id: build
|
|
name: Build image
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
build-args: BUILD_TYPE=release
|
|
load: true # save to docker images
|
|
# push: true # TODO: uncomment when this issue is fixed: https://github.com/moby/buildkit/issues/1555
|
|
tags: >
|
|
${{ env.IMAGE_NAME }},
|
|
${{ env.DEPLOY_IMAGE_NAME }}:latest,
|
|
${{ env.DEPLOY_IMAGE_NAME }}:${{ steps.sanitize_tag.outputs.tag }}
|
|
|
|
# cache layers in GitHub Actions cache to speed up builds
|
|
cache-from: ${{ !inputs.no_cache && 'type=gha' || '' }},scope=docker-release
|
|
cache-to: type=gha,scope=docker-release,mode=max
|
|
|
|
- name: Push image to Docker Hub
|
|
run: docker push --all-tags ${{ env.DEPLOY_IMAGE_NAME }}
|
|
|
|
- name: Generate build report
|
|
env:
|
|
event_name: ${{ github.event_name }}
|
|
event_ref: ${{ github.event.ref }}
|
|
event_ref_type: ${{ github.event.ref}}
|
|
inputs_no_cache: ${{ inputs.no_cache }}
|
|
|
|
prod_branch: stable
|
|
dev_branch: master
|
|
repository: ${{ github.repository }}
|
|
base_branch: ${{ github.ref_name != 'master' && github.ref_name != 'stable' && 'master' || 'stable' }}
|
|
|
|
ref_type: ${{ github.ref_type }}
|
|
current_ref: ${{ github.ref_name }}
|
|
commit_hash: ${{ github.sha }}
|
|
source_url: ${{ format('{0}/tree/{1}', github.event.repository.url, github.event.release && github.event.release.tag_name || github.sha) }}
|
|
|
|
github_context_json: ${{ toJSON(github) }}
|
|
job_env_json: ${{ toJSON(env) }}
|
|
vars_json: ${{ toJSON(vars) }}
|
|
|
|
run: .github/workflows/scripts/docker-release-summary.sh >> $GITHUB_STEP_SUMMARY
|
|
continue-on-error: true
|