Skip to content

Do not run Github Actions on forks. #69

Do not run Github Actions on forks.

Do not run Github Actions on forks. #69

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI/CD dev
on:
push:
branches: [ dev ]
workflow_dispatch:
jobs:
test:
name: Test
uses: ./.github/workflows/test.yml
publish:
name: Publish to Docker Hub
uses: ./.github/workflows/publish_docker.yml
needs: test
if: github.repository_owner == 'ParadoxAlarmInterface'
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}