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-10 14:26:03 +01:00
|
|
|
# I used the following project as template to get started:
|
2020-12-09 16:35:02 +01:00
|
|
|
# https://github.com/dessant/search-by-image/blob/master/.github/workflows/ci.yml
|
2020-12-08 18:37:09 +01:00
|
|
|
|
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:
|
2020-12-09 16:35:02 +01:00
|
|
|
- name: Clone repository
|
2022-09-10 20:38:38 +02:00
|
|
|
uses: actions/checkout@v3
|
2020-12-10 14:26:03 +01:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2020-12-09 16:47:10 +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-10 14:26:03 +01:00
|
|
|
# https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html
|
2020-12-09 17:47:09 +01:00
|
|
|
- name: Get release information
|
|
|
|
id: release_info
|
2020-12-09 17:03:12 +01:00
|
|
|
run: |
|
2020-12-09 17:47:09 +01:00
|
|
|
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
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
|
2023-11-05 22:50:21 +01:00
|
|
|
sed -e 's/%version%/${{ steps.release_info.outputs.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
|
|
|
|
uses: actions/create-release@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
|
|
with:
|
2020-12-09 17:58:46 +01:00
|
|
|
tag_name: ${{ steps.release_info.outputs.VERSION }}
|
|
|
|
release_name: ${{ steps.release_info.outputs.VERSION }}
|
2023-11-22 16:31:15 +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
|
2022-09-07 16:15:36 +02:00
|
|
|
- name: Build MV2 packages
|
2020-12-09 17:47:09 +01:00
|
|
|
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 }}
|
2021-08-15 16:43:36 +02:00
|
|
|
tools/make-npm.sh ${{ steps.release_info.outputs.VERSION }}
|
2020-12-09 17:23:14 +01:00
|
|
|
- name: Upload Chromium package
|
|
|
|
uses: actions/upload-release-asset@v1
|
2020-12-08 18:37:09 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2020-12-09 17:23:14 +01:00
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
2020-12-09 17:47:09 +01:00
|
|
|
asset_path: dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.chromium.zip
|
2020-12-09 18:00:59 +01:00
|
|
|
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.chromium.zip
|
2020-12-09 17:23:14 +01:00
|
|
|
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 }}
|
2020-12-09 17:53:18 +01:00
|
|
|
asset_path: dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.firefox.xpi
|
2020-12-09 18:00:59 +01:00
|
|
|
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.firefox.xpi
|
2020-12-09 17:23:14 +01:00
|
|
|
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 }}
|
2020-12-09 17:53:18 +01:00
|
|
|
asset_path: dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.thunderbird.xpi
|
2020-12-09 18:00:59 +01:00
|
|
|
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.thunderbird.xpi
|
2020-12-09 17:23:14 +01:00
|
|
|
asset_content_type: application/octet-stream
|
2021-07-29 01:43:11 +02:00
|
|
|
- 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 }}
|
2021-08-15 16:43:36 +02:00
|
|
|
asset_path: dist/build/uBlock0_${{ steps.release_info.outputs.VERSION }}.npm.tgz
|
|
|
|
asset_name: uBlock0_${{ steps.release_info.outputs.VERSION }}.npm.tgz
|
2021-07-29 01:43:11 +02:00
|
|
|
asset_content_type: application/octet-stream
|