2022-09-19 09:31:04 -06:00
|
|
|
name: uBO release
|
2020-12-08 10:05:02 -07:00
|
|
|
|
|
|
|
on:
|
2024-11-01 08:45:53 -06:00
|
|
|
workflow_dispatch:
|
2020-12-08 10:05:02 -07:00
|
|
|
create:
|
2020-12-08 10:37:09 -07:00
|
|
|
branches: master
|
2020-12-08 10:05:02 -07:00
|
|
|
|
2022-08-30 23:26:57 -06:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-12-08 10:05:02 -07:00
|
|
|
jobs:
|
|
|
|
build:
|
2022-08-30 23:26:57 -06:00
|
|
|
permissions:
|
|
|
|
contents: write # for creating release
|
2020-12-08 10:37:09 -07:00
|
|
|
name: Build packages
|
2020-12-08 10:05:02 -07:00
|
|
|
runs-on: ubuntu-latest
|
2020-12-09 08:35:02 -07:00
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
2020-12-08 10:05:02 -07:00
|
|
|
steps:
|
2024-11-01 08:45:53 -06:00
|
|
|
- name: Checkout repository
|
2024-03-11 17:31:17 -06:00
|
|
|
uses: actions/checkout@v4
|
2020-12-10 06:26:03 -07:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2024-11-01 08:45:53 -06:00
|
|
|
|
|
|
|
- name: Checkout uAssets repository
|
2020-12-09 08:51:34 -07:00
|
|
|
run: |
|
2022-11-14 07:50:53 -07:00
|
|
|
tools/pull-assets.sh
|
2024-11-01 08:45:53 -06:00
|
|
|
|
2020-12-09 09:47:09 -07:00
|
|
|
- name: Get release information
|
|
|
|
id: release_info
|
2020-12-09 09:03:12 -07:00
|
|
|
run: |
|
2024-11-01 08:45:53 -06:00
|
|
|
echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
|
|
|
|
|
2023-11-05 12:02:46 -07:00
|
|
|
- name: Assemble release notes
|
|
|
|
run: |
|
2023-11-05 14:42:33 -07:00
|
|
|
> release.body.txt
|
2023-11-05 17:26:02 -07:00
|
|
|
grep -m1 -B10000 -- "----------" CHANGELOG.md >> release.body.txt
|
2024-11-01 08:45:53 -06:00
|
|
|
sed -e 's/%version%/'"$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
|
|
|
|
|
2020-12-09 09:32:56 -07:00
|
|
|
- name: Create GitHub release
|
2020-12-09 09:30:09 -07:00
|
|
|
id: create_release
|
2024-11-01 08:45:53 -06:00
|
|
|
uses: softprops/action-gh-release@v2
|
2020-12-09 09:30:09 -07:00
|
|
|
with:
|
2024-11-01 08:45:53 -06:00
|
|
|
tag_name: ${{ env.VERSION }}
|
|
|
|
release_name: ${{ env.VERSION }}
|
2023-11-22 08:33:21 -07:00
|
|
|
draft: true
|
2020-12-09 09:53:18 -07:00
|
|
|
prerelease: true
|
2023-11-05 12:02:46 -07:00
|
|
|
body_path: release.body.txt
|
2020-12-08 10:37:09 -07:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-11-01 08:45:53 -06:00
|
|
|
|
|
|
|
- name: Upload Chromium package
|
|
|
|
uses: softprops/action-gh-release@v2
|
2020-12-08 10:37:09 -07:00
|
|
|
with:
|
2020-12-09 09:23:14 -07:00
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
2024-11-01 08:45:53 -06:00
|
|
|
asset_path: dist/build/uBlock0_${{ env.VERSION }}.chromium.zip
|
|
|
|
asset_name: uBlock0_${{ env.VERSION }}.chromium.zip
|
2020-12-09 09:23:14 -07:00
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-11-01 08:45:53 -06:00
|
|
|
|
|
|
|
- name: Upload Firefox package
|
|
|
|
uses: softprops/action-gh-release@v2
|
2020-12-09 09:23:14 -07:00
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
2024-11-01 08:45:53 -06:00
|
|
|
asset_path: dist/build/uBlock0_${{ env.VERSION }}.firefox.xpi
|
|
|
|
asset_name: uBlock0_${{ env.VERSION }}.firefox.xpi
|
2020-12-09 09:23:14 -07:00
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-11-01 08:45:53 -06:00
|
|
|
|
|
|
|
- name: Upload Thunderbird package
|
|
|
|
uses: softprops/action-gh-release@v2
|
2020-12-09 09:23:14 -07:00
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
2024-11-01 08:45:53 -06:00
|
|
|
asset_path: dist/build/uBlock0_${{ env.VERSION }}.thunderbird.xpi
|
|
|
|
asset_name: uBlock0_${{ env.VERSION }}.thunderbird.xpi
|
2020-12-09 09:23:14 -07:00
|
|
|
asset_content_type: application/octet-stream
|
2021-07-28 17:43:11 -06:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-11-01 08:45:53 -06:00
|
|
|
|
|
|
|
- name: Upload NodeJS package
|
|
|
|
uses: softprops/action-gh-release@v2
|
2021-07-28 17:43:11 -06:00
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
2024-11-01 08:45:53 -06:00
|
|
|
asset_path: dist/build/uBlock0_${{ env.VERSION }}.npm.tgz
|
|
|
|
asset_name: uBlock0_${{ env.VERSION }}.npm.tgz
|
2021-07-28 17:43:11 -06:00
|
|
|
asset_content_type: application/octet-stream
|
2024-11-01 08:45:53 -06:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|