From 4b7921dc6ca9a307012e4804b7c0a2a248502493 Mon Sep 17 00:00:00 2001 From: ParticleG Date: Mon, 18 Nov 2024 18:00:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=20Workflow=20?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0ab6b17fb..df353a755 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -177,7 +177,6 @@ jobs: run: | import os import re - with open(os.getenv('GITHUB_OUTPUT'), 'a') as f: if "${{ env.BUILD_TYPE }}" == "dev": f.write('bundle-id=org.f26_studio.' + re.sub(r'[^A-Za-z0-9]+', '_', '${{ needs.get-info.outputs.app-name }}') + '.snapshot\n') @@ -251,7 +250,6 @@ jobs: run: | import os import re - product_name = re.sub(r'[^A-Za-z0-9]+', '-', '${{ needs.get-info.outputs.app-name }}').strip('-').lower() with open(os.getenv('GITHUB_OUTPUT'), 'a') as f: f.write('bundle-id=org.26f-studio.' + product_name + '\n') @@ -478,7 +476,6 @@ jobs: run: | import requests import json - headers = { 'Content-Type': 'application/json', }