@@ -42,38 +42,51 @@ jobs:
4242 zip_file : ' Better-IUT-RCC.zip'
4343 if : ${{ steps.release.outputs.release_created }}
4444
45- - name : Publish to Edge Addons Store
46- uses : wdzeng/edge-addon@v2
47- continue-on-error : true
48- with :
49- product-id : ${{ secrets.EDGE_EXTENSION_ID }}
50- zip-path : ' Better-IUT-RCC.zip'
51- client-id : ${{ secrets.EDGE_CLIENT_ID }}
52- api-key : ${{ secrets.EDGE_API_KEY }}
53- if : ${{ steps.release.outputs.release_created }}
45+ # Disabled Edge Addons Store publishing for now
46+ # - name: Publish to Edge Addons Store
47+ # uses: wdzeng/edge-addon@v2
48+ # continue-on-error: true
49+ # with:
50+ # product-id: ${{ secrets.EDGE_EXTENSION_ID }}
51+ # zip-path: 'Better-IUT-RCC.zip'
52+ # client-id: ${{ secrets.EDGE_CLIENT_ID }}
53+ # api-key: ${{ secrets.EDGE_API_KEY }}
54+ # if: ${{ steps.release.outputs.release_created }}
5455
5556 - name : Create web-ext-artifacts folder
5657 run : mkdir web-ext-artifacts
5758
58- - name : Sign Firefox Addon
59- id : web-ext-sign
60- 61- with :
62- cmd : sign
63- source : ' Better-IUT-RCC.xpi'
64- channel : unlisted
65- apiKey : ${{ secrets.FF_JWT_ISSUER }}
66- apiSecret : ${{ secrets.FF_JWT_SECRET }}
67- timeout : 900000
68- if : ${{ steps.release.outputs.release_created }}
59+ # Disabled Firefox Addon signing for now
60+ # - name: Sign Firefox Addon
61+ # id: web-ext-sign
62+ 63+ # with:
64+ # cmd: sign
65+ # source: 'Better-IUT-RCC.xpi'
66+ # channel: unlisted
67+ # apiKey: ${{ secrets.FF_JWT_ISSUER }}
68+ # apiSecret: ${{ secrets.FF_JWT_SECRET }}
69+ # timeout: 900000
70+ # if: ${{ steps.release.outputs.release_created }}
71+
72+ # - name: Upload the signed xpi
73+ # uses: actions/upload-release-asset@v1
74+ # env:
75+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
76+ # with:
77+ # upload_url: ${{ steps.release.outputs.upload_url }}
78+ # asset_path: ${{ steps.web-ext-sign.outputs.target }}
79+ # asset_name: Better-IUT-RCC-${{ steps.release.outputs.tag_name }}.xpi
80+ # asset_content_type: application/zip
81+ # if: ${{ steps.release.outputs.release_created }}
6982
70- - name : Upload the signed xpi
83+ - name : Upload the xpi file
7184 uses : actions/upload-release-asset@v1
7285 env :
7386 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
7487 with :
7588 upload_url : ${{ steps.release.outputs.upload_url }}
76- asset_path : ${{ steps.web-ext-sign.outputs.target }}
89+ asset_path : Better-IUT-RCC.xpi
7790 asset_name : Better-IUT-RCC-${{ steps.release.outputs.tag_name }}.xpi
7891 asset_content_type : application/zip
7992 if : ${{ steps.release.outputs.release_created }}
0 commit comments