mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-26 10:24:30 +01:00
22 lines
427 B
YAML
22 lines
427 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
concurrency:
|
|
group: ${{ format('docker-ci-{0}', github.event.pull_request.number || github.sha) }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile --tag autogpt:$(date +%s)
|