-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (32 loc) · 1001 Bytes
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Deploy Docs
on:
push:
branches:
- master
jobs:
build:
name: Build & deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: docs
push: true
tags: jeggy/arkenv-docs:latest
- name: Deploy to Swarm
uses: sagebind/docker-swarm-deploy-action@v2
with:
remote_host: ${{ secrets.DOCKER_HOST }}
ssh_private_key: ${{ secrets.DOCKER_SSH_PRIVATE_KEY }}
ssh_public_key: ${{ secrets.DOCKER_SSH_PUBLIC_KEY }}
args: stack deploy --compose-file docs/docker-compose.prod.yml arkenv