Skip to content

chore(deps): update npm angular packages to v19 (major) #4027

chore(deps): update npm angular packages to v19 (major)

chore(deps): update npm angular packages to v19 (major) #4027

Workflow file for this run

name: CD Release PR
on:
pull_request:
branches:
- 'main'
- 'v**'
permissions:
contents: write
jobs:
docker:
if: github.event.pull_request.head.repo.fork == false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Docker meta
id: meta
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5
with:
# list of Docker images to use as base name for tags
images: |
dockerhubaneo/armonik_admin_app
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=pr
type=sha
- name: Login to DockerHub
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./Dockerfile