Skip to content

Commit

Permalink
build_debug_apk.yml - Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperDragonXD authored Nov 1, 2024
1 parent 42cf2cd commit b065942
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build_debug_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ jobs:
modified_paths=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }})
echo "$modified_paths" | grep -q -v -E '(^\.github/|\.md$|LICENSE|\.idea/|docs/|\.gitignore|\.gitattributes|\.github/ISSUE_TEMPLATE/)'
if [ $? -eq 0 ]; then
echo "skip_steps=false" >> $GITHUB_ENV
echo "false" >> $GITHUB_ENV
echo skip_steps='false >> $GITHUB_ENV
else
echo "skip_steps=true" >> $GITHUB_ENV
echo "true" >> $GITHUB_ENV
echo skip_steps='true' >> $GITHUB_ENV
fi
build-debug-apk:
runs-on: ubuntu-latest
Expand Down

0 comments on commit b065942

Please sign in to comment.