From 487a92f9ad0382ac831bde30b6b0cf2641013292 Mon Sep 17 00:00:00 2001 From: Hank McCord Date: Thu, 13 Jun 2024 09:58:18 -0400 Subject: [PATCH] Drop deprecated flag in web-ext sign The submission API is now the default and the flag associated it is removed. All we need to do is drop the flag as well. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2853435c..bef514fa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -193,4 +193,4 @@ jobs: run: ls -R - name: Upload new release to Firefox Webstore - run: npx -y web-ext sign --use-submission-api --channel=listed --source-dir=./dist/ --verbose --api-key ${{ secrets.FIREFOX_WEBSTORE_API_KEY }} --api-secret ${{ secrets.FIREFOX_WEBSTORE_API_SECRET }} + run: npx -y web-ext sign --channel=listed --source-dir=./dist/ --verbose --api-key ${{ secrets.FIREFOX_WEBSTORE_API_KEY }} --api-secret ${{ secrets.FIREFOX_WEBSTORE_API_SECRET }}