Skip to content

Commit

Permalink
Merge pull request #83 from DFE-Digital/release-clarity-content
Browse files Browse the repository at this point in the history
Release clarity content
  • Loading branch information
stevesatdfe authored Sep 5, 2024
2 parents 44c5469 + 23977d6 commit 6d8757f
Show file tree
Hide file tree
Showing 106 changed files with 19,165 additions and 589 deletions.
2 changes: 1 addition & 1 deletion .github/actions/azure-firewall-ip/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ runs:
if: ${{ inputs.action == 'Remove' }}
shell: bash
run: |
az sql server firewall-rule delete --resource-group ${{ inputs.az_resource_group }} --server ${{ inputs.az_sql_server_name }} --name ${{ inputs.az_firewall_rule_name }} &> /dev/null
az sql server firewall-rule delete --resource-group ${{ inputs.az_resource_group }} --server ${{ inputs.az_sql_server_name }} --name ${{ inputs.az_firewall_rule_name }} &> /dev/null
2 changes: 1 addition & 1 deletion .github/actions/database-migration/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ runs:
action: "Remove"
az_resource_group: ${{ inputs.azure_resource_group }}
az_sql_server_name: ${{ inputs.azure_sql_server_resource_name }}
az_firewall_rule_name: ${{ inputs.az_firewall_rule_name }}
az_firewall_rule_name: ${{ inputs.az_firewall_rule_name }}
2 changes: 1 addition & 1 deletion .github/actions/get-runner-ip-address/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ runs:
DELAY=$((DELAY + 1))
done
echo "Failed to get IP address after $MAX_TRIES attempts..."
exit 1
exit 1
2 changes: 1 addition & 1 deletion .github/actions/variable-substitution/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ runs:
ReportingApiBaseUrl: ${{ steps.fetch.outputs.REPORTINGAPIBASEURL }}
FamilyHubsUi.Analytics.ContainerId: ${{ steps.fetch.outputs.FAMILYHUBSUI_ANALYTICS_CONTAINERID }}
FamilyHubsUi.Analytics.MeasurementId: ${{ steps.fetch.outputs.FAMILYHUBSUI_ANALYTICS_MEASUREMENTID }}
FamilyHubsUi.Analytics.ClarityId: ""
FamilyHubsUi.Analytics.ClarityId: ${{ steps.fetch.outputs.FAMILYHUBSUI_ANALYTICS_CLARITYID }}

- name: Test Settings Variable Substitution
if: inputs.configure == 'Tests'
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-upload-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,3 @@ jobs:
name: ${{ steps.get-name.outputs.artifact_name }}
path: ${{ env.BUILD_DIRECTORY }}
if-no-files-found: error
retention-days: 14
2 changes: 1 addition & 1 deletion .github/workflows/deploy-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ jobs:
startup_project_path: ${{ github.workspace }}/src/${{ inputs.project_type }}/${{ inputs.artifact_name }}/src/${{ inputs.project_name }}
azure_resource_group: ${{ env.RESOURCE_GROUP }}
azure_sql_server_resource_name: ${{ env.SQL_SERVER }}
az_firewall_rule_name: ${{ inputs.artifact_name }}
az_firewall_rule_name: ${{ inputs.artifact_name }}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@ public IndexModel(ICookiePage cookiePage)
CookiePage = cookiePage;
}

public void OnGet()
{
CookiePage.OnGet(Request);
}

public void OnPost(bool analytics)
{
CookiePage.OnPost(analytics, Request, Response);
}
}
}

This file was deleted.

This file was deleted.

Loading

0 comments on commit 6d8757f

Please sign in to comment.