Skip to content

Commit

Permalink
test: k3s deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondanythings committed Aug 27, 2024
1 parent 3e5015a commit 6d23964
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/k3s-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
name: build
needs: [ setup ]
runs-on: ubuntu-latest
# if: ${{ needs.setup.outputs.changed_modules != '' }}
if: ${{ needs.setup.outputs.changed_modules != '' }}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
name: Deploy to K3s
needs: [ build, setup ]
runs-on: ubuntu-latest
# if: ${{ needs.setup.outputs.changed_modules != '' }}
if: ${{ needs.setup.outputs.changed_modules != '' }}
env:
DEPLOY_TARGET: ${{ needs.setup.outputs.deploy_target }}
SHA_SHORT: ${{ needs.setup.outputs.sha_short }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public boolean supportsParameter(MethodParameter parameter) {
// 1. 어노테이션 체크
var annotation = parameter.hasParameterAnnotation(MemberId.class);

// 2. 파라미터의 타입 체크
// 2. 파라미터의 타입체크
var parameterType = parameter.getParameterType().equals(Long.class);

return (annotation && parameterType);
Expand Down

0 comments on commit 6d23964

Please sign in to comment.