fix: use SHA tags instead of latest for GHCR images

This commit is contained in:
MythEclipse
2026-06-19 19:12:23 +07:00
parent 2d3776b54b
commit d447523bb1
2 changed files with 11 additions and 7 deletions
+1 -2
View File
@@ -38,7 +38,6 @@ jobs:
with: with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: | tags: |
type=raw,value=latest
type=sha,prefix= type=sha,prefix=
- name: Build and push Docker image - name: Build and push Docker image
@@ -54,4 +53,4 @@ jobs:
with: with:
token: ${{ secrets.DEPLOY_TOKEN }} token: ${{ secrets.DEPLOY_TOKEN }}
event-type: deploy event-type: deploy
client-payload: '{"image_tag": "${{ github.sha }}"}' client-payload: '{"image_tag": "${{ steps.meta.outputs.version }}"}'
+10 -5
View File
@@ -25,17 +25,22 @@ jobs:
- name: Pull and restart container - name: Pull and restart container
run: | run: |
ssh ${{ env.VPS_USER }}@${{ env.VPS_HOST }} << 'EOF' ssh ${{ env.VPS_USER }}@${{ env.VPS_HOST }} << 'DEPLOY_EOF'
set -e set -e
IMAGE_TAG="${{ github.event.client_payload.image_tag }}"
IMAGE="ghcr.io/mytheclipse/proxy-bun:${IMAGE_TAG}"
echo "=== Logging in to GHCR ===" echo "=== Logging in to GHCR ==="
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
echo "=== Pulling latest image ===" echo "=== Pulling image: ${IMAGE} ==="
docker pull ghcr.io/mytheclipse/proxy-bun:latest docker pull "${IMAGE}"
echo "=== Updating docker-compose.yml ==="
cd /opt/edge-proxy
sed -i "s|image:.*|image: ${IMAGE}|" docker-compose.yml
echo "=== Stopping old container ===" echo "=== Stopping old container ==="
cd /opt/edge-proxy
docker compose down || true docker compose down || true
echo "=== Starting new container ===" echo "=== Starting new container ==="
@@ -46,7 +51,7 @@ jobs:
curl -sf http://localhost:3000/health || echo "Health check failed" curl -sf http://localhost:3000/health || echo "Health check failed"
echo "=== Deployment complete ===" echo "=== Deployment complete ==="
EOF DEPLOY_EOF
- name: Verify deployment - name: Verify deployment
run: | run: |