Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

ci: fix deployer

ci: fix deployer #5

Workflow file for this run

# Maven でビルドを実行する。マージされたら、リリースを作成する。
# リリースが作成されたら、本番環境へデプロイする。
name: Maven
on:
pull_request:
branches:
- main
- master
types:
- opened
- synchronize
paths:
- .github/workflows/maven-ci.yml
pull_request_target:
branches:
- main
- master
types:
- opened
- synchronize
- reopened
- closed
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.merged == true && github.base_ref || github.event.pull_request.head.sha }}
jobs:
maven-ci:
name: Maven CI
uses: book000/templates/.github/workflows/reusable-maven.yml@master
deploy:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
needs:
- maven-ci
steps:
- name: Create GitHub deployment
uses: chrnorm/deployment-action@v2.0.5
id: deployment
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ needs.maven-ci.outputs.tag }}
environment: "production"
environment-url: https://github.com/${{ github.repository }}/releases/tag/${{ needs.maven-ci.outputs.tag }}
- name: Update deployment status (in_progress)
uses: chrnorm/deployment-status@v2.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
state: in_progress
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
- name: Deploy
id: deployRequest
run: |
response=$(curl -i -X POST -H 'Authorization: Bearer ${{ secrets.DEPLOY_KEY }}' "${{ secrets.DEPLOY_URL }}")
echo "$response"
echo "response=$response" >> $GITHUB_OUTPUT
- name: Is Successful Deploy
if: ${{ fromJson(steps.deployRequest.outputs.response).status == 'SUCCESSFUL' }}
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.pull_request.number }}
body: |
# :white_check_mark: デプロイが完了しました
プルリクエストがマージされたため、本番環境へのデプロイを行いました。
バージョンは `${{ needs.maven-ci.outputs.version }}` です。稼働中バージョンの確認は Minecraft サーバ内で `/ver AntiAlts3` を実行することで確認できます。
反映は本番環境の再起動後ですので、アクティブログインユーザーの同意を得て再起動するか、3時の自動再起動を待ってください。
https://github.com/${{ github.repository }}/releases/tag/${{ needs.maven-ci.outputs.tag }}
- name: Is Failed Deploy
if: ${{ failure() }}
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.pull_request.number }}
body: |
# :x: デプロイに失敗しました
プルリクエストがマージされたため、本番環境へのデプロイを行おうとしましたが失敗しました。
エラー内容は以下の通りです。
```
${{ steps.deployRequest.outputs.response }}
```
- name: Is Successful Deploy
if: ${{ fromJson(steps.deployRequest.outputs.response).status == 'SUCCESSFUL' }}
uses: chrnorm/deployment-status@v2.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
state: success
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
- name: Update deployment status (failure)
if: ${{ failure() || fromJson(steps.deployRequest.outputs.response).status == 'ERROR' }}
uses: chrnorm/deployment-status@v2.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
state: failure
deployment-id: ${{ steps.deployment.outputs.deployment_id }}