Skip to content

Deploy Docker Image #21

Deploy Docker Image

Deploy Docker Image #21

Workflow file for this run

name: Deploy Docker Image
on:
workflow_run:
workflows: ["Build and Push Docker"]
types:
- completed
workflow_dispatch:
env:
APP_URL: https://chatgame.space
APP_ENV: website-production
jobs:
deploy:
name: Deploy image
runs-on: ubuntu-latest
permissions:
deployments: write
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: chrnorm/deployment-action@v2
name: Create GitHub deployment
id: deployment
with:
token: '${{ github.token }}'
environment-url: ${{ env.APP_URL }}
environment: ${{ env.APP_ENV }}
- name: Restart service on Kosarev.Space
uses: fjogeleit/http-request-action@v1
with:
url: "https://kosarev.space/api/service/${{ secrets.SERVICE_ID }}/restart"
method: 'POST'
bearerToken: '${{ secrets.BEARER_TOKEN }}'
timeout: 15000
- name: Update deployment status (success)
if: success()
uses: chrnorm/deployment-status@v2
with:
token: '${{ github.token }}'
environment-url: ${{ steps.deployment.outputs.environment_url }}
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
state: 'success'
- name: Update deployment status (failure)
if: failure()
uses: chrnorm/deployment-status@v2
with:
token: '${{ github.token }}'
environment-url: ${{ steps.deployment.outputs.environment_url }}
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
state: 'failure'