Skip to content

Bump express from 4.18.1 to 4.19.2 #1480

Bump express from 4.18.1 to 4.19.2

Bump express from 4.18.1 to 4.19.2 #1480

Workflow file for this run

name: Docker Hub
# on all branches, tags, PRs
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build and push Docker images
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: nault/nault
tag_with_ref: true
push: ${{ startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/') }}