Bump express from 4.17.3 to 4.19.2 in /lp-proxy #82
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: Docker Images CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
PUSH_IMAGES: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker images | |
run: docker-compose build | |
- name: Log in to the Container registry | |
if: ${{ env.PUSH_IMAGES == 'true' }} | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish the Docker images | |
if: ${{ env.PUSH_IMAGES == 'true' }} | |
run: docker-compose push |