Update server.py #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
build-and-deploy: | |
# https://docs.github.com/en/actions/deployment/about-deployments/deploying-with-github-actions | |
environment: production | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Log in to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker image | |
id: build-push | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
push: true | |
tags: ghcr.io/${{ github.repository }}/poe-server:${{ github.sha }} | |
- name: Install Nomad CLI | |
run: | | |
sudo apt update -yq &&sudo apt install -yq curl gnupg gettext-base | |
curl -L https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg | |
export $( cat /etc/lsb-release | grep DISTRIB_CODENAME ); echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com ${DISTRIB_CODENAME} main" | sudo tee /etc/apt/sources.list.d/hashicorp.list | |
sudo apt update -yq && sudo apt install -yq nomad | |
- name: Deploy to Nomad | |
run: | | |
mkdir -p .secrets | |
echo "${{ secrets.NOMAD_CACERT }}" > .secrets/nomad-ca.pem | |
echo "${{ secrets.NOMAD_CLIENT_CERT }}" > .secrets/nomad-client.pem | |
echo "${{ secrets.NOMAD_CLIENT_KEY }}" > .secrets/nomad-client-key.pem | |
envsubst < server.nomad > server.hcl | |
nomad job run \ | |
-address="${{ secrets.NOMAD_ADDR }}" \ | |
-ca-cert=".secrets/nomad-ca.pem" \ | |
-client-cert=".secrets/nomad-client.pem" \ | |
-client-key=".secrets/nomad-client-key.pem" \ | |
server.hcl | |
env: | |
NOMAD_PORT_http: ${NOMAD_PORT_http} | |
NOMAD_TLS_SERVER_NAME: 127.0.0.1 | |
POE_COOKIES: ${{ secrets.POE_COOKIES }} | |
POE_AUTH_TOKENS: ${{ secrets.POE_AUTH_TOKENS }} | |
IMAGE_TAG: ghcr.io/${{ github.repository }}/poe-server:${{ github.sha }} |