This commit is contained in:
Skylar Grant 2022-12-02 12:16:43 -05:00 committed by GitHub
parent 4a35e4d4a3
commit b9332ec602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

19
.github/workflows/docker-image.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag v0idf1sh/nodbot:$(date +%s)
run: docker login