Skip to content

ADDED: docker compose file #1

ADDED: docker compose file

ADDED: docker compose file #1

Workflow file for this run

name: deploy
# Trigger event on every push / delete event, no matter the branch
# on: [push, delete]
# Trigger event on every push / delete event, only in master branch
on:
push:
branches:
- "master"
delete:
branches:
- "master"
jobs:
deploy:

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

View workflow run for this annotation

GitHub Actions / deploy

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 16, Col: 3): The workflow must contain at least one job with no dependencies.
needs: build
runs-on: [self-hosted]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Stop eChempad container
run: docker-compose down
- name: Force pulling of the images or they would not be updated
run: docker-compose pull
- name: restart eChempad container with new image, which will be automatically pulled
run: docker-compose up -d