Skip to content

Commit

Permalink
Merge pull request #1782 from DFE-Digital/paas/fix-artifacts
Browse files Browse the repository at this point in the history
Fix Artifacts
  • Loading branch information
sfawcett123 authored Jun 23, 2021
2 parents 213a065 + c5b0415 commit f766411
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: unit_tests
path: ${{ github.workspace }}/out/*
path: ${{ github.workspace }}/out/test-report.xml

- name: Fixup report file paths
run: sudo sed -i "s?\"/app/?\"${PWD}/?" coverage/coverage.json || true
Expand All @@ -145,7 +145,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: Code_Coverage
path: ${{ github.workspace }}/coverage/*
path: ${{ github.workspace }}/coverage/coverage.json

security_tests:
name: Security Tests
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: cucumber_tests
path: ${{ github.workspace }}/out/*
path: ${{ github.workspace }}/out/test-report.xml

selenium_cucumber_tests:
name: Chrome Cucumber Tests
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: selenium_cucumber_tests
path: ${{ github.workspace }}/out/*
path: ${{ github.workspace }}/out/test-report.xml

sonarcloud:
name: SonarCloud
Expand Down
1 change: 1 addition & 0 deletions terraform/paas/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,5 @@ variable "paas_docker_image" {

variable "alerts" {
type = map(any)
default = {}
}

0 comments on commit f766411

Please sign in to comment.