Skip to content

fix HOT_RELOAD being true too often #63

fix HOT_RELOAD being true too often

fix HOT_RELOAD being true too often #63

Workflow file for this run

name: Publish
on:
push:
branches:
- "main"
env:
REGISTRY: ghcr.io
IMAGE_NAME: holusion/e-corpus
DEPLOY_HOST: ecorpus.holusion.com
concurrency:
group: publish-${{ github.ref }}
cancel-in-progress: true
jobs:
docker-publish:
name: Docker Image
runs-on: ubuntu-latest
timeout-minutes: 10
outputs:
digest: ${{ steps.push.outputs.digest }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push
id: push
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
provenance: false
deploy:
name: Deploy (ecorpus.holusion.com)
runs-on: ubuntu-latest
environment: ecorpus.holusion.com
needs: [docker-publish]
steps:
- name: set up ssh configuration
env:
PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run: |
mkdir -p "$HOME/.ssh"
echo "$PRIVATE_KEY" > "$HOME/.ssh/id_ed25519"
chmod 600 "$HOME/.ssh/id_ed25519"
ssh-keyscan -t rsa ${{ env.DEPLOY_HOST }} > "$HOME/.ssh/known_hosts"
- name: Log in to the Container registry
# seems required even if image is public for unclear reasons
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: update docker service
run: >
docker -H ssh://github@${{ env.DEPLOY_HOST }}:22 service update
--with-registry-auth
--image ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${{ needs.docker-publish.outputs.digest }}
ecorpus_main
- name: check service status
run: >
curl -sSL --fail -H "Accept: application/json" -I http://${{ env.DEPLOY_HOST }}/api/v1/scenes