Skip to content

Commit

Permalink
AAE-17877 conditions reverted
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciech-piotrowiak committed Nov 27, 2023
1 parent 2aebc12 commit 0362784
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/maven-build-and-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,15 @@ runs:
git push origin $VERSION
- name: Clean m2 cache
if: github.event_name == 'push' && github.event.repository.default_branch == github.ref_name
if: github.event_name == 'push'
shell: bash
run: |
rm -fr ~/.m2/repository/org/activiti
rm -fr ~/.m2/repository/com/alfresco
- name: Save maven cache
uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
if: github.event_name == 'push' && github.event.repository.default_branch == github.ref_name
if: github.event_name == 'push'
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 comments on commit 0362784

Please sign in to comment.