mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Squashed commit of the following:
commita4d319437aAuthor: daylight <starcrush@monemail.com> Date: Fri Nov 1 21:01:06 2024 +0300 Delete .gitmodules commit57b7d98148Author: daylight <starcrush@monemail.com> Date: Fri Nov 1 17:47:50 2024 +0300 Delete dist/mv3/log.txt commitc936a72bb3Author: daylight <starcrush@monemail.com> Date: Fri Nov 1 17:47:16 2024 +0300 Update dist/README.md commitb5aaec47b3Author: daylight <starcrush@monemail.com> Date: Fri Nov 1 17:46:53 2024 +0300 Update release head commitbe2da15508Author: daylight <starcrush@monemail.com> Date: Fri Nov 1 17:46:37 2024 +0300 Update links in readme commit3019dfc37aAuthor: daylight <starcrush@monemail.com> Date: Fri Nov 1 17:46:16 2024 +0300 Update contributing guide commit3b9333dbd8Author: daylight <starcrush@monemail.com> Date: Fri Nov 1 17:45:53 2024 +0300 Update CI commit2831a0d0fdAuthor: daylight <starcrush@monemail.com> Date: Fri Nov 1 17:45:31 2024 +0300 Update config Revert "Update CI" This reverts commit3b9333dbd8.
This commit is contained in:
parent
a4d319437a
commit
12817eee57
1 changed files with 43 additions and 49 deletions
92
.github/workflows/main.yml
vendored
92
.github/workflows/main.yml
vendored
|
|
@ -1,13 +1,15 @@
|
||||||
name: uBO release
|
name: uBO release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
|
||||||
create:
|
create:
|
||||||
branches: master
|
branches: master
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
|
# I used the following project as template to get started:
|
||||||
|
# https://github.com/dessant/search-by-image/blob/master/.github/workflows/ci.yml
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
permissions:
|
permissions:
|
||||||
|
|
@ -16,81 +18,73 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Clone repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
- name: Clone uAssets
|
||||||
- name: Checkout uAssets repository
|
|
||||||
run: |
|
run: |
|
||||||
tools/pull-assets.sh
|
tools/pull-assets.sh
|
||||||
|
# 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
|
||||||
run: |
|
run: |
|
||||||
echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
|
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
||||||
|
|
||||||
- name: Assemble release notes
|
- name: Assemble release notes
|
||||||
run: |
|
run: |
|
||||||
> release.body.txt
|
> release.body.txt
|
||||||
grep -m1 -B10000 -- "----------" CHANGELOG.md >> release.body.txt
|
grep -m1 -B10000 -- "----------" CHANGELOG.md >> release.body.txt
|
||||||
sed -e 's/%version%/'"$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: Build MV2 packages
|
|
||||||
run: |
|
|
||||||
tools/make-chromium.sh $VERSION
|
|
||||||
tools/make-firefox.sh $VERSION
|
|
||||||
tools/make-thunderbird.sh $VERSION
|
|
||||||
tools/make-npm.sh $VERSION
|
|
||||||
|
|
||||||
- name: Create GitHub release
|
- name: Create GitHub release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ env.VERSION }}
|
tag_name: ${{ steps.release_info.outputs.VERSION }}
|
||||||
release_name: ${{ env.VERSION }}
|
release_name: ${{ steps.release_info.outputs.VERSION }}
|
||||||
draft: true
|
draft: true
|
||||||
prerelease: true
|
prerelease: true
|
||||||
body_path: release.body.txt
|
body_path: release.body.txt
|
||||||
env:
|
- name: Build MV2 packages
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
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 }}
|
||||||
- name: Upload Chromium package
|
- name: Upload Chromium package
|
||||||
uses: softprops/action-gh-release@v2
|
uses: actions/upload-release-asset@v1
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: dist/build/uBlock0_${{ env.VERSION }}.chromium.zip
|
|
||||||
asset_name: uBlock0_${{ env.VERSION }}.chromium.zip
|
|
||||||
asset_content_type: application/octet-stream
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
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
|
- name: Upload Firefox package
|
||||||
uses: softprops/action-gh-release@v2
|
uses: actions/upload-release-asset@v1
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: dist/build/uBlock0_${{ env.VERSION }}.firefox.xpi
|
|
||||||
asset_name: uBlock0_${{ env.VERSION }}.firefox.xpi
|
|
||||||
asset_content_type: application/octet-stream
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
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
|
- name: Upload Thunderbird package
|
||||||
uses: softprops/action-gh-release@v2
|
uses: actions/upload-release-asset@v1
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: dist/build/uBlock0_${{ env.VERSION }}.thunderbird.xpi
|
|
||||||
asset_name: uBlock0_${{ env.VERSION }}.thunderbird.xpi
|
|
||||||
asset_content_type: application/octet-stream
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
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
|
- name: Upload NodeJS package
|
||||||
uses: softprops/action-gh-release@v2
|
uses: actions/upload-release-asset@v1
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: dist/build/uBlock0_${{ env.VERSION }}.npm.tgz
|
|
||||||
asset_name: uBlock0_${{ env.VERSION }}.npm.tgz
|
|
||||||
asset_content_type: application/octet-stream
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
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 a new issue