mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Attempt to make make GitHub Actions work
This commit is contained in:
parent
61b1d87b52
commit
392888506c
1 changed files with 6 additions and 6 deletions
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
|
@ -16,9 +16,9 @@ jobs:
|
||||||
- name: Build all
|
- name: Build all
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
run: |
|
run: |
|
||||||
tools/make-chromium.sh $VERSION
|
"$GITHUB_WORKSPACE/tools/make-chromium.sh $VERSION"
|
||||||
tools/make-firefox.sh $VERSION
|
"$GITHUB_WORKSPACE/tools/make-firefox.sh $VERSION"
|
||||||
tools/make-thunderbird.sh $VERSION
|
"$GITHUB_WORKSPACE/tools/make-thunderbird.sh $VERSION"
|
||||||
|
|
||||||
- name: Upload packages
|
- name: Upload packages
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
|
@ -28,6 +28,6 @@ jobs:
|
||||||
VERSION: ${{ format(github.ref, 'refs/tags/', '') }}
|
VERSION: ${{ format(github.ref, 'refs/tags/', '') }}
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
dist/build/uBlock0_$VERSION.chromium.zip
|
"$GITHUB_WORKSPACE/dist/build/uBlock0_$VERSION.chromium.zip"
|
||||||
dist/build/uBlock0_$VERSION.firefox.xpi
|
"$GITHUB_WORKSPACE/dist/build/uBlock0_$VERSION.firefox.xpi"
|
||||||
dist/build/uBlock0_$VERSION.thunderbird.xpi
|
"$GITHUB_WORKSPACE/dist/build/uBlock0_$VERSION.thunderbird.xpi"
|
||||||
|
|
Loading…
Reference in a new issue