Skip to content

Merge pull request #44 from saneci/feature/docker #1

Merge pull request #44 from saneci/feature/docker

Merge pull request #44 from saneci/feature/docker #1

Workflow file for this run

name: Continuous Delivery
on:
push:
branches: [ master ]
jobs:
build:

Check failure on line 8 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Continuous Delivery

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 8, Col: 3): The workflow must contain at least one job with no dependencies.
needs: [integration-tests]
runs-on: ubuntu-latest
steps:
- name: Check out the repository to the runner
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v5
with:
db_username: ${{ secrets.DB_USERNAME }}
db_password: ${{ secrets.DB_PASSWORD }}
context: .
push: true
target: final
tags: ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:latest