Skip to content

Documentation

Documentation #19

name: Deploy to Develop
on:
push:
branches:
# Will need to changes branches accordingly. Testing.
- 'develop'
- 'main'
jobs:
application_tests:
uses: ./.github/workflows/application-tests.yml
deploy:
runs-on: ubuntu-latest
needs: [application_tests]
if: always() && contains(needs.*.result, 'success')
steps:
- run: echo "Step 1"
shell: bash
- run: echo "Step 2"
shell: bash