Skip to content

Commit 1cf0dca

Browse files
authored
Only store strings.zip as artifact in PR workflow (#6669)
1 parent 9bc151c commit 1cf0dca

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/actions/download-translations/action.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,3 @@ runs:
4949
shell: bash
5050
run: zip -r strings.zip common/src/main/res/values/strings.xml common/src/main/res/values-*/strings.xml
5151

52-
- name: Archive Translations
53-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
54-
with:
55-
name: strings
56-
path: strings.zip

.github/workflows/pr.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ jobs:
5454
exit 1
5555
fi
5656
57+
- name: Archive Translations
58+
if: steps.changes.outputs.skip != 'true'
59+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
60+
with:
61+
name: strings
62+
path: strings.zip
63+
5764
yamllint:
5865
runs-on: ubuntu-latest
5966
steps:

0 commit comments

Comments
 (0)