mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-16 23:42:39 +01:00
Address workflow warnings
This commit is contained in:
parent
dc81a39a99
commit
689ffbe7d3
57
.github/workflows/main.yml
vendored
57
.github/workflows/main.yml
vendored
@ -25,6 +25,12 @@ jobs:
|
|||||||
- name: Clone uAssets
|
- name: Clone uAssets
|
||||||
run: |
|
run: |
|
||||||
tools/pull-assets.sh
|
tools/pull-assets.sh
|
||||||
|
- name: Build MV2 packages
|
||||||
|
run: |
|
||||||
|
tools/make-chromium.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-npm.sh ${{ steps.release_info.outputs.VERSION }}
|
||||||
# https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html
|
# https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html
|
||||||
- name: Get release information
|
- name: Get release information
|
||||||
id: release_info
|
id: release_info
|
||||||
@ -37,54 +43,17 @@ jobs:
|
|||||||
sed -e 's/%version%/${{ steps.release_info.outputs.VERSION }}/g' RELEASE.HEAD.md >> release.body.txt
|
sed -e 's/%version%/${{ steps.release_info.outputs.VERSION }}/g' RELEASE.HEAD.md >> release.body.txt
|
||||||
- name: Create GitHub release
|
- name: Create GitHub release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: actions/create-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ steps.release_info.outputs.VERSION }}
|
tag_name: ${{ steps.release_info.outputs.VERSION }}
|
||||||
release_name: ${{ steps.release_info.outputs.VERSION }}
|
name: ${{ steps.release_info.outputs.VERSION }}
|
||||||
draft: true
|
draft: true
|
||||||
prerelease: true
|
prerelease: true
|
||||||
body_path: release.body.txt
|
body_path: release.body.txt
|
||||||
- name: Build MV2 packages
|
files: |
|
||||||
run: |
|
dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.chromium.zip
|
||||||
tools/make-chromium.sh ${{ steps.release_info.outputs.VERSION }}
|
dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.firefox.xpi
|
||||||
tools/make-firefox.sh ${{ steps.release_info.outputs.VERSION }}
|
dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.thunderbird.xpi
|
||||||
tools/make-thunderbird.sh ${{ steps.release_info.outputs.VERSION }}
|
dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.npm.tgz
|
||||||
tools/make-npm.sh ${{ steps.release_info.outputs.VERSION }}
|
|
||||||
- name: Upload Chromium 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 }}.chromium.zip
|
|
||||||
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.chromium.zip
|
|
||||||
asset_content_type: application/octet-stream
|
|
||||||
- name: Upload Firefox 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 }}.firefox.xpi
|
|
||||||
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.firefox.xpi
|
|
||||||
asset_content_type: application/octet-stream
|
|
||||||
- name: Upload Thunderbird 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 }}.thunderbird.xpi
|
|
||||||
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.thunderbird.xpi
|
|
||||||
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 }}.npm.tgz
|
|
||||||
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.npm.tgz
|
|
||||||
asset_content_type: application/octet-stream
|
|
||||||
|
Loading…
Reference in New Issue
Block a user