Skip to content

[deps]: Update @types/express to v5 (#232) #237

[deps]: Update @types/express to v5 (#232)

[deps]: Update @types/express to v5 (#232) #237

Workflow file for this run

---
name: Build and push Docker image
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
push-image:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Login to GitHub Container Registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Build and push the Docker image
run: |
docker build . -f Dockerfile -t ghcr.io/bitwarden/test-the-web:latest
docker push ghcr.io/bitwarden/test-the-web:latest