fix(actions

): should now upload to dockerhub automatically
This commit is contained in:
darkicewolf50 2024-12-21 15:06:19 -07:00
parent 6528525b7b
commit 68d1cb9a63
2 changed files with 1 additions and 1 deletions

0
.dockerignore Normal file
View File

View File

@ -47,7 +47,7 @@ jobs:
Dockerhub:
runs-on: ubuntu-latest
needs: ruffLint # will only run if linter is successful
if: github.ref == 'refs/heads/main' # Runs only if the push/PR merge is to 'main'
if: ${{ github.ref == 'refs/heads/main' || github.event.pull_request.merged == true }} # Runs if it's a push to 'main' or a merged PR to 'main'
steps:
- name: checkout
uses: actions/checkout@v3