|
@@ -40,7 +40,7 @@ jobs:
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
needs: compare-upload
|
|
needs: compare-upload
|
|
environment: poeditor
|
|
environment: poeditor
|
|
- if: needs.compare-upload.outputs.hasChanges
|
|
|
|
|
|
+ if: ${{ needs.compare-upload.outputs.hasChanges == 'true' }}
|
|
steps:
|
|
steps:
|
|
- name: Checkout
|
|
- name: Checkout
|
|
uses: actions/[email protected]
|
|
uses: actions/[email protected]
|
|
@@ -64,7 +64,7 @@ jobs:
|
|
POEDITOR_API_KEY: ${{ secrets.POEDITORKEY }}
|
|
POEDITOR_API_KEY: ${{ secrets.POEDITORKEY }}
|
|
POEDITOR_PROJECT_ID: ${{ secrets.POEDITORPROJECT }}
|
|
POEDITOR_PROJECT_ID: ${{ secrets.POEDITORPROJECT }}
|
|
- name: Create branch
|
|
- name: Create branch
|
|
- if: steps.download-languages.outputs.HAS_CHANGES
|
|
|
|
|
|
+ if: ${{ steps.download-languages.outputs.hasChanges == 'true' }}
|
|
run: git checkout -B "language-update-${{ github.run_number }}-${{ github.run_attempt }}"
|
|
run: git checkout -B "language-update-${{ github.run_number }}-${{ github.run_attempt }}"
|
|
- name: Add changes and commit
|
|
- name: Add changes and commit
|
|
run: |
|
|
run: |
|