1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-25 20:02:51 +01:00
uBlock/.github/workflows/main.yml

55 lines
1.6 KiB
YAML
Raw Normal View History

2022-09-19 17:31:04 +02:00
name: uBO release
on:
create:
2020-12-08 18:37:09 +01:00
branches: master
2022-08-31 07:26:57 +02:00
permissions:
contents: read
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
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Clone repository
uses: actions/checkout@v4
2020-12-10 14:26:03 +01:00
with:
persist-credentials: false
- name: Clone uAssets
run: |
tools/pull-assets.sh
- name: Get release information
run: |
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 }}
- name: Assemble release notes
run: |
> release.body.txt
2023-11-06 01:26:02 +01:00
grep -m1 -B10000 -- "----------" CHANGELOG.md >> release.body.txt
sed -e 's/%version%/${{ env.VERSION }}/g' RELEASE.HEAD.md >> release.body.txt
- name: Create GitHub release
id: create_release
2024-11-08 18:07:30 +01:00
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag_name: ${{ env.VERSION }}
name: ${{ env.VERSION }}
2023-11-22 16:33:21 +01:00
draft: true
prerelease: true
body_path: release.body.txt
2024-11-08 18:07:30 +01:00
files: |
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