前提・実現したいこと
現在ローカル環境からgithubのmasterブランチへプログラムファイルのpushないしpull requestを実行したときに、githubからweb apサーバ(EC2でwindows server2019)への自動デプロイをgithub actionsで実現しようとしています。
実現するにあたり主に
https://qiita.com/gdtypk/items/aea503db22dfc79f4e9e
こちらの記事を参考にしました。
ただ、runs-onの環境をwindows-2019にしてpwshでのrunになっているからだと思うのですが、環境変数の参照部分でエラーが発生している状況です。
コード
haml
1# This is a basic workflow to help you get started with Actions 2 3name: TestDeploy_Windows 4 5# Controls when the action will run. 6on: 7 # Triggers the workflow on push or pull request events but only for the master branch 8 push: 9 branches: [ master ] 10 pull_request: 11 branches: [ master ] 12 13 # Allows you to run this workflow manually from the Actions tab 14 workflow_dispatch: 15 16# A workflow run is made up of one or more jobs that can run sequentially or in parallel 17jobs: 18 deploy: 19 if: github.ref == 'refs/heads/master' 20 runs-on: windows-2019 21 steps: 22 - name: Public IP 23 id: ip 24 uses: haythem/public-ip@v1.2 25 26 - uses: actions/checkout@v2 27 - name: Deploy 28 env: 29 PRIVATE_KEY: ${{ secrets.PRIVATE_KEY_TEST }} 30 USER_NAME: ${{ secrets.USER_NAME_TEST }} 31 HOST_NAME: ${{ secrets.HOST_NAME_TEST }} 32 ACCESS_KEY: ${{ secrets.ACCESS_KEY_TEST }} 33 SECRET_ACCESS_KEY: ${{ secrets.SECRET_ACCESS_KEY_TEST }} 34 SECURITY_GROUP: ${{ secrets.SECURITY_GROUP_TEST }} 35 36 run: | 37 # https://github.com/haythem/public-ip 38 $IP_ADDRESS=${{ steps.ip.outputs.ipv4 }} 39 40 aws --version 41 42 # AWS CLIに設定 43 $temp="${env:ACCESS_KEY}"+"`n"+"${env:SECRET_ACCESS_KEY}"+"`n"+"ap-northeast-1`njson`n" 44 echo $temp | aws configure --profile eyemovic-dev 45 aws configure get aws_access_key_id --profile eyemovic-dev 46 47 # SSHポートを開放する 48 aws --profile eyemovic-dev ec2 authorize-security-group-ingress --group-id ${SECURITY_GROUP_TEST } --protocol tcp --port 22 --cidr "$IP_ADDRESS"/32 49 50 # SSH接続して,git pullする 51 echo "$PRIVATE_KEY" > private_key && chmod 600 private_key 52 ssh -o StrictHostKeyChecking=no -i private_key ${USER_NAME_TEST }@${HOST_NAME_TEST} ' 53 cd C:/ && 54 git checkout master && 55 git fetch --all && 56 git reset --hard origin/master && 57 git pull origin master 58 ' 59 # SSHのポートを閉じる 60 aws --profile eyemovic-dev ec2 revoke-security-group-ingress --group-id ${SECURITY_GROUP_TEST } --protocol tcp --port 22 --cidr "$IP_ADDRESS"/32
エラー文
env:
PRIVATE_KEY: **
USER_NAME: **
HOST_NAME: **
ACCESS_KEY: **
SECRET_ACCESS_KEY: **
SECURITY_GROUP: **
aws-cli/2.1.0 Python/3.7.7 Windows/10 exe/AMD64
AWS Access Key ID [None]: AWS Secret Access Key [None]: Default region name [None]: Default output format [None]: ***
An error occurred (InvalidParameterValue) when calling the AuthorizeSecurityGroupIngress operation: CIDR block /32 is malformed
ssh: connect to host *** port 22: Connection timed out
An error occurred (InvalidParameterValue) when calling the RevokeSecurityGroupIngress operation: CIDR block /32 is malformed
Error: Process completed with exit code 1.
試したこと
エラー文の通り、AWSCLIに設定の部分で現在の書き方ではaws configure --profile eyemovic-devのコマンドに対してパイプラインで値を渡すはずが、わたせていない状態になってます。
初めは記事の通りの書き方で書いてましたが、pwshでの実行というところでpowershellでの文字列の記述のしかたなどを調べながら変更していきました。
おそらくですが、envで設定した変数がうまく取り出せていないのではないかと思うのですがそもそもその考え方自体が違うのかわからない状態になってます。どうすればよいでしょうか。。。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/10/07 05:47