deployment

This commit is contained in:
cupcakearmy 2021-12-20 15:41:25 +01:00
parent afd830c3bc
commit 474a9f10c4
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F
2 changed files with 40 additions and 1 deletions

39
.github/workflows/docker.yaml vendored Normal file
View File

@ -0,0 +1,39 @@
name: Docker
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Docker Labels
id: meta
uses: crazy-max/ghaction-docker-meta@v2
with:
images: ghcr.io/cupcakearmy/hcs
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
# - name: Login to DockerHub
# uses: docker/login-action@v1
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

View File

@ -10,4 +10,4 @@ RUN pnpm i --frozen-lockfile
COPY src tsconfig.json ./
RUN pnpm run build
CMD [ "node", "." ]
CMD [ "pnpm", "run", "start" ]