From f8b8838cd619c73532e8f23f6ed9b110e91c37f2 Mon Sep 17 00:00:00 2001 From: Albert Wolszon Date: Tue, 24 Oct 2023 10:48:02 +0200 Subject: [PATCH] Print, don't artifact ARBs --- .github/workflows/go-test.yml | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 2f4f004..796a7a0 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -66,20 +66,23 @@ jobs: - name: Run integration test env: + # Read-only POEditor token for albert+poe2arb@... POEDITOR_TOKEN: ${{ secrets.POEDITOR_INTEGRATION_TESTS_TOKEN }} + working-directory: integration_test run: | - cd integration_test poe2arb poe poe2arb poe --output-dir lib/l10n_prefixed --term-prefix prefixed flutter gen-l10n - - name: Upload ARBs artifact - if: always() - uses: actions/upload-artifact@v3 - with: - name: integration-test-arbs - path: | - integration_test/lib/l10n/app_en.arb - integration_test/lib/l10n/app_pl.arb - integration_test/lib/l10n_prefixed/app_en.arb - integration_test/lib/l10n_prefixed/app_pl.arb + - name: Print ARBs + working-directory: integration_test + run: | + echo "=== lib/l10n/app_en.arb ===" + cat lib/l10n/app_en.arb + echo "=== lib/l10n/app_pl.arb ===" + cat lib/l10n/app_pl.arb + + echo "=== lib/l10n_prefixed/app_en.arb ===" + cat lib/l10n_prefixed/app_en.arb + echo "=== lib/l10n_prefixed/app_pl.arb ===" + cat lib/l10n_prefixed/app_pl.arb