Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Aug 21, 2024
1 parent 081efa0 commit b47f269
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/angular.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,17 +186,6 @@ jobs:
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# Cache save doesn't work with deep path exclude https://github.com/actions/toolkit/issues/713, remove manually
- name: Cleanup application temporary files
if: >-
github.event_name == 'push' &&
matrix.sonar-analyse == 'true'
run: |
rm -rf target/node
rm -rf target/test-results/lcov-report
rm -rf target/site
rm -rf target/generated-sources
rm -rf target/*.original
rm -rf target/*.jar
- name: Create application cache
if: >-
github.event_name == 'push' &&
Expand All @@ -207,6 +196,13 @@ jobs:
app/*
!app/node_modules
!app/package-lock.json
!app/target
app/target/*
!app/target/node
!app/target/site
!app/target/generated-sources
!app/target/*.original
!app/target/*.jar
key: application-${{ matrix.name }}-${{ github.sha }}
check-angular:
permissions:
Expand Down

0 comments on commit b47f269

Please sign in to comment.