Skip to content

Commit

Permalink
fix: ncloud 하위 디렉토리 모든 권한 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
psychology50 committed Jan 25, 2024
1 parent d7ca2de commit 9b315ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Add Github Action Ip to Security group
run: |
cd ./cli_linux
chmod -R +x ./ncloud
chmod -R 777 ./ncloud
./ncloud vserver addAccessControlGroupInboundRule --regionCode KR --vpcNo ${{ secrets.NCP_VPC_NO }} --accessControlGroupNo ${{ secrets.NCP_AGC_NO }} --accessControlGroupRuleList "protocolTypeCode='TCP', ipBlock='${{ steps.ip.outputs.ipv4 }}', portRange='${{ secrets.SSH_PORT }}'"
- name: deploy
Expand All @@ -81,5 +81,5 @@ jobs:
- name: Remove Github Action Ip to Security group
run: |
cd ./cli_linux
chmod -R +x ./ncloud
chmod -R 777 ./ncloud
./ncloud vserver removeAccessControlGroupInboundRule --regionCode KR --vpcNo ${{ secrets.NCP_VPC_NO }} --accessControlGroupNo ${{ secrets.NCP_AGC_NO }} --accessControlGroupRuleList "protocolTypeCode='TCP', ipBlock='${{ steps.ip.outputs.ipv4 }}', portRange='${{ secrets.SSH_PORT }}'"

0 comments on commit 9b315ac

Please sign in to comment.