2020-12-08 10:37:09 -07:00
|
|
|
name: GitHub CI
|
2020-12-08 10:05:02 -07:00
|
|
|
|
|
|
|
on:
|
|
|
|
create:
|
2020-12-08 10:37:09 -07:00
|
|
|
branches: master
|
2020-12-08 10:05:02 -07:00
|
|
|
|
2020-12-08 10:37:09 -07:00
|
|
|
# I used as template to get started:
|
|
|
|
# https://github.com/DNSCrypt/dnscrypt-proxy/blob/master/.github/workflows/releases.yml
|
2020-12-09 08:35:02 -07:00
|
|
|
# https://github.com/dessant/search-by-image/blob/master/.github/workflows/ci.yml
|
2020-12-08 10:37:09 -07:00
|
|
|
|
2020-12-08 10:05:02 -07:00
|
|
|
jobs:
|
|
|
|
build:
|
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:
|
2020-12-09 08:35:02 -07:00
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build all packages
|
2020-12-08 10:05:02 -07:00
|
|
|
run: |
|
2020-12-09 08:35:02 -07:00
|
|
|
tools/make-chromium.sh $VERSION
|
|
|
|
tools/make-firefox.sh $VERSION
|
|
|
|
tools/make-thunderbird.sh $VERSION
|
2020-12-08 10:37:09 -07:00
|
|
|
|
|
|
|
- name: Upload packages
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-12-09 08:14:36 -07:00
|
|
|
VERSION: ${{ format(github.ref, 'refs/tags/', '') }}
|
2020-12-08 10:37:09 -07:00
|
|
|
with:
|
|
|
|
files: |
|
2020-12-09 08:35:02 -07:00
|
|
|
dist/build/uBlock0_$VERSION.chromium.zip
|
|
|
|
dist/build/uBlock0_$VERSION.firefox.xpi
|
|
|
|
dist/build/uBlock0_$VERSION.thunderbird.xpi
|