From eb35d9e1223e27772309ba9c8d891a6ff3eb88b6 Mon Sep 17 00:00:00 2001 From: Aine Date: Wed, 30 Oct 2024 18:00:05 +0200 Subject: [PATCH] remove CI hack to include version into manifest.json (now generated on each build automatically) --- .github/workflows/workflow.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 438f144..4c12eb5 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -25,10 +25,6 @@ jobs: cache: yarn - name: Install dependencies run: yarn install --immutable --network-timeout=300000 - - name: Set version into manifest.json - run: | - TAG=$(git describe --tags --abbrev=0 || echo "latest") - sed -i "s|\"icons\"|\"version\": \"$TAG\",\\n \"icons\"|g" public/manifest.json - name: Build run: yarn build --base=${{ env.base_path }} - uses: actions/upload-artifact@v4