Skip to content

Commit

Permalink
fix action description
Browse files Browse the repository at this point in the history
  • Loading branch information
yume190 committed Sep 7, 2023
1 parent c51e378 commit e01565f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 0.0.5
VERSION = 0.0.6

include CodeQL.mk

Expand Down Expand Up @@ -78,3 +78,10 @@ proj:
leakDetect \
--module LeakDetectorDemo \
--file LeakDetector/LeakDetectorDemo.xcworkspace

# git clone https://github.com/chauvincent/LeakyApp-iOS
.PHONY: proj2
proj2:
leakDetect \
--module LeakyApp \
--file LeakyApp-iOS/LeakyApp.xcodeproj
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: yume190/LeakDetect@0.0.5
- uses: yume190/LeakDetect@0.0.6
with:
# https://github.com/antranapp/LeakDetector
module: LeakDetectorDemo
Expand Down
2 changes: 1 addition & 1 deletion README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: yume190/LeakDetect@0.0.5
- uses: yume190/LeakDetect@0.0.6
with:
# https://github.com/antranapp/LeakDetector
module: LeakDetectorDemo
Expand Down
2 changes: 1 addition & 1 deletion Sources/LeakDetect/Command.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ struct Command: AsyncParsableCommand {
leakDetect --module LeakDetectorDemo --file LeakDetectorDemo.xcworkspace
""",
version: "0.0.5"
version: "0.0.6"
)

@Flag(name: [.customLong("verbose", withSingleDash: false), .short], help: "verbose")
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
default: ${{github.repository}}

token:
description: 'Github token, ${{ secrets.GITHUB_TOKEN }}'
description: 'Github token'
required: true

issue:
Expand Down Expand Up @@ -43,7 +43,7 @@ runs:
run: |
# TEMP_DIR=$(mktemp -d)
curl -sSL \
"https://github.com/yume190/LeakDetect/releases/download/0.0.5/leakDetect" \
"https://github.com/yume190/LeakDetect/releases/download/0.0.6/leakDetect" \
-o leakDetect
chmod +x leakDetect
Expand Down

0 comments on commit e01565f

Please sign in to comment.