Browse Source

chore: change release assets names

so that they are different from the name of source code package provided
by GitHub
Gerald 4 years ago
parent
commit
c8e0d31c75
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/release.yml

+ 2 - 2
.github/workflows/release.yml

@@ -20,11 +20,11 @@ jobs:
       - name: Build
         run: |
           yarn build
-          cd dist && zip -r ../$RELEASE_PREFIX-v$VERSION.zip . && cd ..
+          cd dist && zip -r ../$RELEASE_PREFIX-webext-v$VERSION.zip . && cd ..
 
           # Same as `yarn build:selfHosted` but only manifest is changed for now
           TARGET=selfHosted npx gulp manifest
-          cd dist && zip -r ../$RELEASE_PREFIX-ffself-v$VERSION.zip . && cd ..
+          cd dist && zip -r ../$RELEASE_PREFIX-webext-ffself-v$VERSION.zip . && cd ..
       - name: Create Release
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}