mirror of https://github.com/gorhill/uBlock.git
Build/release a nodejs package in tagged releases
Related issue: - https://github.com/cliqz-oss/adblocker/pull/2075
This commit is contained in:
parent
09db8803c5
commit
d7cd6d72f6
|
@ -41,6 +41,7 @@ jobs:
|
||||||
tools/make-chromium.sh ${{ steps.release_info.outputs.VERSION }}
|
tools/make-chromium.sh ${{ steps.release_info.outputs.VERSION }}
|
||||||
tools/make-firefox.sh ${{ steps.release_info.outputs.VERSION }}
|
tools/make-firefox.sh ${{ steps.release_info.outputs.VERSION }}
|
||||||
tools/make-thunderbird.sh ${{ steps.release_info.outputs.VERSION }}
|
tools/make-thunderbird.sh ${{ steps.release_info.outputs.VERSION }}
|
||||||
|
tools/make-nodejs.sh ${{ steps.release_info.outputs.VERSION }}
|
||||||
- name: Upload Chromium package
|
- name: Upload Chromium package
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
env:
|
env:
|
||||||
|
@ -68,3 +69,12 @@ jobs:
|
||||||
asset_path: dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.thunderbird.xpi
|
asset_path: dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.thunderbird.xpi
|
||||||
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.thunderbird.xpi
|
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.thunderbird.xpi
|
||||||
asset_content_type: application/octet-stream
|
asset_content_type: application/octet-stream
|
||||||
|
- name: Upload NodeJS package
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.nodejs.zip
|
||||||
|
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.nodejs.zip
|
||||||
|
asset_content_type: application/octet-stream
|
||||||
|
|
Loading…
Reference in New Issue