Don't use the commit sha for the builds, because it's too long for Firefox signing

This commit is contained in:
Bruno Bernardino 2022-01-04 09:45:28 +00:00
parent 95d29c6e01
commit ee77c5b221
No known key found for this signature in database
GPG Key ID: D1B0A69ADD114ECE
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ jobs:
env:
PL_SERVER_URL: ${{ secrets.PL_SERVER_URL }}
run: |
node update-manifest-build.js ${{ github.sha }}
node update-manifest-build.js ${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
npm run web-extension:build
- name: Sign for Firefox
if: github.event.inputs.environment == 'Beta' || github.event.inputs.environment == 'Production'