34 lines
841 B
YAML
34 lines
841 B
YAML
name: Deploy website to Docker Container
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies and build
|
|
run: |
|
|
npm ci
|
|
npm run production
|
|
|
|
- name: Build Docker image
|
|
run: docker build -t thethomaas/11ty-workflow-example:latest --build-arg SITE_DIRECTORY=dist .
|
|
|
|
- run: |
|
|
echo ${{secrets.CONTAINER_NAME}} | sed 's/./& /g'
|
|
echo ${{secrets.CONTAINER_IMAGE}} | sed 's/./& /g'
|
|
|
|
- name: Remove old Docker container
|
|
run: |
|
|
docker stop dev || true && docker rm dev || true
|
|
|
|
- name: Run Docker container
|
|
run: |
|
|
docker run -d -p 8086:3000 --name dev thethomaas/11ty-workflow-example:latest |