Fix workflow and python syntax issues

This commit is contained in:
Ryan Ahearn
2022-11-03 13:39:35 -04:00
parent 0a89889897
commit 20992fff2d
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
name: Deploy to demo environment name: Deploy to demo environment
on: on:
push: [ production ] push:
branches: [ production ]
permissions: permissions:
contents: read contents: read
+2
View File
@@ -415,9 +415,11 @@ class Production(Config):
class Staging(Production): class Staging(Production):
pass pass
class Demo(Production): class Demo(Production):
pass pass
configs = { configs = {
'development': Development, 'development': Development,
'test': Test, 'test': Test,