1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 18:19:38 +02:00
uBlock/.github/workflows/main.yml
2020-12-08 13:35:28 -05:00

33 lines
944 B
YAML

name: GitHub CI
on:
create:
branches: master
workflow_dispatch:
# I used as template to get started:
# https://github.com/DNSCrypt/dnscrypt-proxy/blob/master/.github/workflows/releases.yml
jobs:
build:
name: Build packages
runs-on: ubuntu-latest
steps:
- name: Build all
if: startsWith(github.ref, 'refs/tags/')
run: |
./tools/make-chromium.sh ${{ github.ref }}
./tools/make-firefox.sh ${{ github.ref }}
./tools/make-thunderbird.sh ${{ github.ref }}
- name: Upload packages
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
./dist/build/uBlock0_${{ github.ref }}.chromium.zip
./dist/build/uBlock0_${{ github.ref }}.firefox.xpi
./dist/build/uBlock0_${{ github.ref }}.thunderbird.xpi