Замена монтирования start.sh на его упаковку внутрь Docker образа

This commit is contained in:
2025-03-04 16:32:05 +04:00
parent e78f93061d
commit 8ca6d2ed6d
4 changed files with 5 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ on:
env:
IMAGE_NAME: ${{ github.repository }}
REGISTRY_HOST: registry.n08i40k.ru
jobs:
build:
@@ -26,7 +26,7 @@ jobs:
- name: Log into registry
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
with:
registry: ${{ secrets.REGISTRY_HOST }}
registry: ${{ env.REGISTRY_HOST }}
username: ${{ github.actor }}
password: ${{ secrets.REGISTRY_PASSWD }}
@@ -34,7 +34,7 @@ jobs:
id: meta
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
with:
images: ${{ secrets.REGISTRY_HOST }}/${{ env.IMAGE_NAME }}
images: ${{ env.REGISTRY_HOST }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
id: build-and-push