Compare commits

..

2 Commits

Author SHA1 Message Date
jango-blockchained
d6bb83685d chore: upgrade GitHub Actions Docker workflow dependencies
- Update GitHub Actions workflow to use latest versions of checkout, login, metadata, and build-push actions
- Bump action versions from v2/v3/v4 to v3/v4/v5 for improved compatibility and features
2025-02-04 15:11:36 +01:00
jango-blockchained
54112c9059 chore: manage bun.lockb in Docker and project configuration
- Update .dockerignore to exclude bun.lockb
- Modify .gitignore to track bun.lockb
- Update Dockerfile to remove bun.lockb copy step
- Add bun.lockb binary lockfile to the repository
2025-02-04 15:08:15 +01:00
5 changed files with 7 additions and 6 deletions

View File

@@ -73,6 +73,7 @@ temp/
.cloud/
*.db
*.db-*
bun.lockb
.cursor/
.cursor*
.cursorconfig

View File

@@ -20,7 +20,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Required for version detection
@@ -41,7 +41,7 @@ jobs:
body: ${{ steps.tag_version.outputs.changelog }}
- name: Log in to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
@@ -49,7 +49,7 @@ jobs:
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
@@ -57,7 +57,7 @@ jobs:
type=raw,value=latest
- name: Build and push Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true

2
.gitignore vendored
View File

@@ -65,7 +65,6 @@ home-assistant_v2.db-*
package-lock.json
yarn.lock
pnpm-lock.yaml
bun.lockb
coverage/*
coverage/
@@ -79,3 +78,4 @@ coverage/
.bun/
.cursorconfig
bun.lockb

View File

@@ -5,7 +5,7 @@ FROM oven/bun:1.0.25
WORKDIR /app
# Copy package files
COPY package.json bun.lockb ./
COPY package.json ./
# Install dependencies
RUN bun install

BIN
bun.lockb Executable file

Binary file not shown.