From 61b1d87b52e81659e91f192e17460e6d2e6c7eac Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Wed, 9 Dec 2020 10:16:02 -0500 Subject: [PATCH] Attempt to make make GitHub Actions work --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 483980690..6ff57edb9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,9 +16,9 @@ jobs: - name: Build all if: startsWith(github.ref, 'refs/tags/') run: | - /tools/make-chromium.sh $VERSION - /tools/make-firefox.sh $VERSION - /tools/make-thunderbird.sh $VERSION + tools/make-chromium.sh $VERSION + tools/make-firefox.sh $VERSION + tools/make-thunderbird.sh $VERSION - name: Upload packages uses: softprops/action-gh-release@v1 @@ -28,6 +28,6 @@ jobs: VERSION: ${{ format(github.ref, 'refs/tags/', '') }} with: files: | - /dist/build/uBlock0_$VERSION.chromium.zip - /dist/build/uBlock0_$VERSION.firefox.xpi - /dist/build/uBlock0_$VERSION.thunderbird.xpi + dist/build/uBlock0_$VERSION.chromium.zip + dist/build/uBlock0_$VERSION.firefox.xpi + dist/build/uBlock0_$VERSION.thunderbird.xpi