From 2ee4175437bbfcddf98e5eacba9b019113716ac8 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 1 May 2024 19:34:25 +0200 Subject: Remove electron entirely (#2859) Co-authored-by: rejbasket --- .github/workflows/build.yml | 12 ------------ .github/workflows/translations.yml | 3 +-- 2 files changed, 1 insertion(+), 14 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 57f3a2c6..21b9fe12 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,18 +30,6 @@ jobs: restore-keys: | ${{ runner.os }}-20.04-pip- - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - - uses: actions/cache@v4 - id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- - - name: install dependencies shell: bash run: | diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index fbb7b409..e7f27f9b 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -57,8 +57,7 @@ jobs: # files when a new translation string is added but we don't need to # commit those until folks actually translate the new strings. if git diff translations | grep -qE '^[-+]msgstr ".+"$'; then - make electron/src/renderer/assets/translations.json - git add translations electron/src/renderer/assets/translations.json + git add translations git commit -m "new translations from Crowdin" git push https://github.com/inkstitch/inkstitch main fi -- cgit v1.3.1