Skip to content

chore: Production test 7 #12

chore: Production test 7

chore: Production test 7 #12

Workflow file for this run

name: Deploy in production
on:
push:
branches:
- prod
workflow_dispatch:
jobs:
build_server:
uses: ./.github/workflows/build_server_image.yml
secrets: inherit
build_webapp:
needs: build_server
uses: ./.github/workflows/build_web_image.yml
secrets: inherit
deploy_release:
needs: build_webapp
uses: ./.github/workflows/create_release.yml

Check failure on line 19 in .github/workflows/deploy_prod.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy_prod.yml

Invalid workflow file

error parsing called workflow ".github/workflows/deploy_prod.yml" -> "./.github/workflows/create_release.yml" (source branch with sha:c3f57ba49a821879103c8b1f23187167860fc7df) : You have an error in your yaml syntax on line 22
secrets: inherit
update_sera_app:
needs: deploy_release
uses: ./.github/workflows/install_sera.yml
secrets: inherit
notify:
needs: deploy_release
runs-on: ubuntu-latest
steps:
- name: Notify production build & published
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@master
with:
args: "A new release just been created on SERA, images pushed to dockerhub."