Fix workflow for dev env

This commit is contained in:
Skylar Grant 2022-12-02 16:29:39 -05:00
parent 6aafb15945
commit 9ee92b090a
1 changed files with 4 additions and 4 deletions

View File

@ -2,9 +2,9 @@ name: Docker Image CI
on:
push:
branches: [ "main" ]
branches: [ "dev" ]
pull_request:
branches: [ "main" ]
branches: [ "dev" ]
env:
DHUB_UNAME: ${{ secrets.DHUB_UNAME }}
@ -19,8 +19,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag v0idf1sh/nodbot
run: docker build . --file Dockerfile --tag v0idf1sh/nodbot-dev
- name: Log into Docker Hub
run: docker login -u $DHUB_UNAME -p $DHUB_PWORD
- name: Push image to Docker Hub
run: docker push v0idf1sh/nodbot
run: docker push v0idf1sh/nodbot-dev