Trying more ci/cd shit
Some checks failed
Build and push / Lint-Python (push) Failing after 2s
Build and push / Build-and-Push-Docker (push) Successful in 9s

This commit is contained in:
Luke R 2024-05-02 12:18:00 -07:00
parent 13d44220e0
commit e46a046af2

View File

@ -19,12 +19,13 @@ jobs:
uv pip install black --system --quiet uv pip install black --system --quiet
black app --check --fast black app --check --fast
Build-and-Push-Docker: Build-and-Push-Docker:
- name: Login to Docker Hub steps:
if: github.event_name != 'pull_request' - name: Login to Docker Hub
uses: docker/login-action@v3 if: github.event_name != 'pull_request'
with: uses: docker/login-action@v3
username: ${{ secrets.DOCKER_USERNAME }} with:
password: ${{ secrets.DOCKER_TOKEN }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
# - name: Build and push # - name: Build and push
# uses: docker/build-push-action@v5 # uses: docker/build-push-action@v5
# with: # with: