From 8bd73c3afa35c2bc7afad4cc53e86bec3b0a48af Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Sat, 2 Sep 2023 21:59:23 +0700 Subject: [PATCH] ci(release): don't build when not necessary Add paths-ignore to all markdown files, and .idea folder --- .github/workflows/release.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 642933c8..9b094490 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,9 +4,15 @@ on: push: branches: - dev + paths-ignore: + - "**.md" + - ".idea/**" pull_request: branches: - dev + paths-ignore: + - "**.md" + - ".idea/**" jobs: build: @@ -40,5 +46,5 @@ jobs: - name: Upload APK uses: actions/upload-artifact@v3 with: - name: manager - path: ${{steps.sign_apk.outputs.signedReleaseFile}} + name: revanced-manager + path: ${{ steps.sign_apk.outputs.signedReleaseFile }}