Skip to content

chore(deps): bump lucide-react from 0.282.0 to 0.303.0 in /src/core #135

chore(deps): bump lucide-react from 0.282.0 to 0.303.0 in /src/core

chore(deps): bump lucide-react from 0.282.0 to 0.303.0 in /src/core #135

Workflow file for this run

name: core.dev-build-push
on:
push:
branches-ignore:
- 'main'
paths:
- 'src/core/**'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/core
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=raw,value=dev,enable=${{ endsWith(github.ref, '-dev') }}
type=sha
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: src/core
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}