Skip to content

remove pid on start production #7

remove pid on start production

remove pid on start production #7

Workflow file for this run

name: Node CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
cache: 'yarn'
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: make ci
deploy:
needs: build
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' }}
steps:
- uses: actions/checkout@v2
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: docker/build-push-action@v3
with:
context: .
push: true
file: Dockerfile.app
cache-from: hexletcomponents/software-lifecycle-unstable-app:latest
cache-to: type=inline
tags: hexletcomponents/software-lifecycle-unstable-app:latest