Skip to content

Disable work box and service worker #50

Disable work box and service worker

Disable work box and service worker #50

Workflow file for this run

name: Docker pipeline

Check failure on line 1 in .github/workflows/push.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/push.yml

Invalid workflow file

(Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
on:
push:
branches:
- master
# TODO: Change environment and login envs
jobs:
django:
name: push / django
environment: testes
runs-on: ubuntu-latest
needs: dependencies
steps:
- name: Check out code from Github
uses: actions/checkout@v3
- name: Build django image
run: |
docker build . -t jandigarte/django:latest
- name: Push django image
run: |
docker login -u ${{ secrets.DOCKER_HUB_USER }} -p ${{ secrets.DOCKER_HUB_PASS }}
docker push jandigarte/django:latest