oriasirmi/AutoGPT
0
1name: Docker Image CI2 3on:4 push:5 branches: [ "master" ]6 pull_request:7 branches: [ "master" ]8 9jobs:10 11 build:12 13 runs-on: ubuntu-latest14 15 steps:16 - uses: actions/checkout@v317 - name: Build the Docker image18 run: docker build . --file Dockerfile --tag autogpt:$(date +%s)19 