Spaces:
Build error
Build error
| 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 | |