From 5ba6a486709da3a3160fc6a7816f32dec65d60b9 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Thu, 5 Dec 2024 21:51:16 +0100 Subject: [PATCH] - workflows/pull-transifex.yml: add cleanup and remove trailing "/" from folders --- .github/workflows/pull-transifex.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-transifex.yml b/.github/workflows/pull-transifex.yml index b0631306f..eb0355748 100644 --- a/.github/workflows/pull-transifex.yml +++ b/.github/workflows/pull-transifex.yml @@ -53,11 +53,17 @@ jobs: - name: Verify Swift installation run: swift -v + - name: Show Swift file + run: cat tools/normalizestrings/main.swift + - name: Compile Swift file run: swiftc tools/normalizestrings/main.swift -o ocstringstool - name: Run compiled Swift program - run: ./ocstringstool normalize "ownCloud/Resources/" "ownCloud Action Extension/" "ownCloud File Provider/" "ownCloud Share Extension/" "ownCloudAppFramework/Resources/" + run: ./ocstringstool normalize "ownCloud/Resources" "ownCloud Action Extension" "ownCloud File Provider" "ownCloud Share Extension"" "ownCloudAppFramework/Resources" + + - name: Cleanup download and ocstringstool + run: rm swift-5.3-RELEASE-ubuntu20.04.tar.gz ocstringstool - uses: GuillaumeFalourd/git-commit-push@v1.3 with: