You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Migrate Build # Step to run Flyway migrations
51
+
# To use username and password instead of windows integrated security Ensure that SQL Server is configured to allow SQL Server authentication. You can check this in SQL Server Management Studio (SSMS) under the server properties -> Security -> Server authentication. Ensure "SQL Server and Windows Authentication mode" is selected.
shell: cmd # Default shell. Use Windows Command Prompt
73
+
74
+
steps: # Steps are the individual tasks that are executed in the job
75
+
- uses: actions/checkout@v4 # Check out the repository
76
+
with: # Additional options for the action
77
+
ref: "Production"# Branch to check out
78
+
79
+
- name: Deploy to Prod 1 # Step to run Flyway migrations
80
+
# To use username and password instead of windows integrated security Ensure that SQL Server is configured to allow SQL Server authentication. You can check this in SQL Server Management Studio (SSMS) under the server properties -> Security -> Server authentication. Ensure "SQL Server and Windows Authentication mode" is selected.
# Multi-tenant deployment. Add second deployment to PROD2 here
83
+
working-directory: ./migrations
84
+
85
+
- name: Deploy to Prod 2 # Step to run Flyway migrations
86
+
# To use username and password instead of windows integrated security Ensure that SQL Server is configured to allow SQL Server authentication. You can check this in SQL Server Management Studio (SSMS) under the server properties -> Security -> Server authentication. Ensure "SQL Server and Windows Authentication mode" is selected.
shell: cmd # Default shell. Use Windows Command Prompt
29
+
30
+
steps: # Steps are the individual tasks that are executed in the job
31
+
- uses: actions/checkout@v4 # Check out the repository
32
+
with: # Additional options for the action
33
+
ref: "QA"# Branch to check out
34
+
35
+
- name: Deploy to QA # Step to run Flyway migrations
36
+
# To use username and password instead of windows integrated security Ensure that SQL Server is configured to allow SQL Server authentication. You can check this in SQL Server Management Studio (SSMS) under the server properties -> Security -> Server authentication. Ensure "SQL Server and Windows Authentication mode" is selected.
0 commit comments