2022-09-19 17:31:04 +02:00
|
|
|
name: uBO release
|
2020-12-08 18:05:02 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
create:
|
2020-12-08 18:37:09 +01:00
|
|
|
branches: master
|
2020-12-08 18:05:02 +01:00
|
|
|
|
2022-08-31 07:26:57 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-12-08 18:05:02 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
2022-08-31 07:26:57 +02:00
|
|
|
permissions:
|
|
|
|
contents: write # for creating release
|
2020-12-08 18:37:09 +01:00
|
|
|
name: Build packages
|
2020-12-08 18:05:02 +01:00
|
|
|
runs-on: ubuntu-latest
|
2020-12-09 16:35:02 +01:00
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
2020-12-08 18:05:02 +01:00
|
|
|
steps:
|
2024-11-04 16:12:25 +01:00
|
|
|
- name: Clone repository
|
2024-03-12 00:31:17 +01:00
|
|
|
uses: actions/checkout@v4
|
2020-12-10 14:26:03 +01:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2024-11-04 16:12:25 +01:00
|
|
|
- name: Clone uAssets
|
2020-12-09 16:51:34 +01:00
|
|
|
run: |
|
2022-11-14 15:50:53 +01:00
|
|
|
tools/pull-assets.sh
|
2020-12-09 17:47:09 +01:00
|
|
|
- name: Get release information
|
2020-12-09 17:03:12 +01:00
|
|
|
run: |
|
2024-11-08 18:17:27 +01:00
|
|
|
echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
|
|
|
|
- name: Build MV2 packages
|
|
|
|
run: |
|
|
|
|
tools/make-chromium.sh ${{ env.VERSION }}
|
|
|
|
tools/make-firefox.sh ${{ env.VERSION }}
|
|
|
|
tools/make-thunderbird.sh ${{ env.VERSION }}
|
|
|
|
tools/make-npm.sh ${{ env.VERSION }}
|
2023-11-05 20:02:46 +01:00
|
|
|
- name: Assemble release notes
|
|
|
|
run: |
|
2023-11-05 22:42:33 +01:00
|
|
|
> release.body.txt
|
2023-11-06 01:26:02 +01:00
|
|
|
grep -m1 -B10000 -- "----------" CHANGELOG.md >> release.body.txt
|
2024-11-08 18:17:27 +01:00
|
|
|
sed -e 's/%version%/${{ env.VERSION }}/g' RELEASE.HEAD.md >> release.body.txt
|
2020-12-09 17:32:56 +01:00
|
|
|
- name: Create GitHub release
|
2020-12-09 17:30:09 +01:00
|
|
|
id: create_release
|
2024-11-08 18:07:30 +01:00
|
|
|
uses: softprops/action-gh-release@v2
|
2024-11-04 16:12:25 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ github.token }}
|
2020-12-09 17:30:09 +01:00
|
|
|
with:
|
2024-11-08 18:17:27 +01:00
|
|
|
tag_name: ${{ env.VERSION }}
|
|
|
|
name: ${{ env.VERSION }}
|
2023-11-22 16:33:21 +01:00
|
|
|
draft: true
|
2020-12-09 17:53:18 +01:00
|
|
|
prerelease: true
|
2023-11-05 20:02:46 +01:00
|
|
|
body_path: release.body.txt
|
2024-11-08 18:07:30 +01:00
|
|
|
files: |
|
2024-11-08 18:17:27 +01:00
|
|
|
dist/build/uBlock0_${{ env.VERSION }}.chromium.zip
|
|
|
|
dist/build/uBlock0_${{ env.VERSION }}.firefox.xpi
|
|
|
|
dist/build/uBlock0_${{ env.VERSION }}.thunderbird.xpi
|
|
|
|
dist/build/uBlock0_${{ env.VERSION }}.npm.tgz
|