29 Commits

Author SHA1 Message Date
f0f354a8d4 Merge branch 'main' into new_notify 2025-11-11 11:09:56 +00:00
8864f9585e new deploy condition 2025-11-11 14:06:46 +03:00
b7fb2ed335 Merge pull request 'new_notify' (#48) from new_notify into main
Reviewed-on: #48
2025-10-21 15:14:52 +00:00
760b6a8257 Merge branch 'main' into new_notify 2025-10-21 15:14:44 +00:00
d7bae2b72f Merge branch 'new_notify' of bb.hublab.ru:HUB/workflows into new_notify 2025-10-21 18:14:12 +03:00
2e4141834e change absolute way 2025-10-21 18:14:09 +03:00
4576ab5751 Merge pull request 'test arch' (#47) from new_notify into main
Reviewed-on: #47
2025-10-17 12:33:50 +00:00
5114bcf9fe Merge branch 'main' into new_notify 2025-10-17 12:33:45 +00:00
a6877dda7e test arch 2025-10-17 15:32:54 +03:00
6d04254346 Merge pull request 'change cash' (#46) from new_notify into main
Reviewed-on: #46
2025-10-16 11:25:52 +00:00
50c5bc458a Merge branch 'main' into new_notify 2025-10-16 11:25:40 +00:00
31eccd5c09 change cash 2025-10-16 14:25:18 +03:00
a0f83b72d1 Merge pull request 'new_notify' (#45) from new_notify into main
Reviewed-on: #45
2025-10-16 08:04:52 +00:00
fc1da26055 Merge branch 'main' into new_notify 2025-10-16 08:04:46 +00:00
8689d0d108 Merge branch 'new_notify' of bb.hublab.ru:HUB/workflows into new_notify 2025-10-16 11:04:27 +03:00
86934c05e8 fix notify in deploy 2025-10-16 11:04:24 +03:00
52f6139528 Merge pull request 'new_notify' (#44) from new_notify into main
Reviewed-on: #44
2025-10-16 07:49:03 +00:00
de7b8c7d7f Merge branch 'main' into new_notify 2025-10-16 07:48:53 +00:00
1fdc459c07 Merge branch 'new_notify' of bb.hublab.ru:HUB/workflows into new_notify 2025-10-16 10:48:40 +03:00
57998e19a9 vk-notify 2025-10-16 10:48:38 +03:00
9c829b3543 Merge pull request 'fix lil' (#43) from new_notify into main
Reviewed-on: #43
2025-10-15 15:24:18 +00:00
6c1d7a9176 Merge branch 'main' into new_notify 2025-10-15 15:24:10 +00:00
23c6930c11 fix lil 2025-10-15 18:23:35 +03:00
f1e3fc9bae Merge pull request 'Lil fix' (#42) from new_notify into main
Reviewed-on: #42
2025-10-15 13:59:00 +00:00
bac7e0abb3 Merge branch 'main' into new_notify 2025-10-15 13:58:55 +00:00
f816482983 Lil fix 2025-10-15 16:57:38 +03:00
2e1a74b96c Merge pull request 'new_notify' (#41) from new_notify into main
Reviewed-on: #41
2025-10-15 13:46:51 +00:00
2daf21ea55 Merge branch 'main' into new_notify 2025-10-15 13:46:45 +00:00
30764b992f Merge pull request 'new_notify' (#40) from new_notify into main
Reviewed-on: #40
2025-10-15 13:09:46 +00:00
2 changed files with 31 additions and 17 deletions

View File

@@ -11,6 +11,9 @@ on:
force_build:
type: boolean
default: false
arch:
type: string
default: "linux/amd64,linux/arm64/v8"
secrets:
VK_TEAMS_BOT_TOKEN:
required: true
@@ -69,9 +72,10 @@ jobs:
- name: Restore Docker layer cache
uses: actions/cache/restore@v4
with:
path: /cache/buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
path: /cache/${{ github.repository }}/buildx-cache
key: ${{ runner.os }}-${{ github.repository }}-buildx-${{ hashFiles(format('{0}/Dockerfile', github.workspace), format('{0}/**/requirements.txt', github.workspace), format('{0}/**/*lock*', github.workspace), format('{0}/**/package-lock.json', github.workspace), format('{0}/**/poetry.lock', github.workspace)) }}
restore-keys: |
${{ runner.os }}-${{ github.repository }}-buildx-
${{ runner.os }}-buildx-
- name: Build and push multi-arch image
@@ -84,28 +88,34 @@ jobs:
tags: |
cr.yandex/${{ env.CR_REGISTRY }}/${{ env.CR_REPO }}:${{ env.SHORT_SHA }}
cr.yandex/${{ env.CR_REGISTRY }}/${{ env.CR_REPO }}:${{ env.SAFE_TAG }}
platforms: linux/amd64,linux/arm64/v8
platforms: ${{ inputs.arch }}
ssh: default
no-cache: ${{ inputs.force_build }}
build-args: |
GIT_COMMIT=${{ github.sha }}
cache-from: |
type=local,src=/cache/buildx-cache
type=local,src=/cache/${{ github.repository }}/buildx-cache
cache-to: |
type=local,dest=/cache/buildx-cache-new,mode=max
type=local,dest=/cache/${{ github.repository }}/buildx-cache-new,mode=max
- name: Move new cache
- name: Move new cache if it exists
if: always()
run: |
rm -rf /cache/buildx-cache
mv /cache/buildx-cache-new /cache/buildx-cache
mkdir -p /cache/${{ github.repository }}
if [ -d /cache/${{ github.repository }}/buildx-cache-new ]; then
echo "Found new buildx cache, replacing old one..."
rm -rf /cache/${{ github.repository }}/buildx-cache
mv /cache/${{ github.repository }}/buildx-cache-new /cache/${{ github.repository }}/buildx-cache
else
echo "No new buildx cache found, keeping old one."
fi
- name: Save Docker layer cache
if: always()
uses: actions/cache/save@v4
with:
path: /cache/buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
path: /cache/${{ github.repository }}/buildx-cache
key: ${{ runner.os }}-${{ github.repository }}-buildx-${{ hashFiles(format('{0}/Dockerfile', github.workspace), format('{0}/**/requirements.txt', github.workspace), format('{0}/**/*lock*', github.workspace), format('{0}/**/package-lock.json', github.workspace), format('{0}/**/poetry.lock', github.workspace)) }}
- name: Notify (result)
if: always()
@@ -114,5 +124,5 @@ jobs:
VK_TEAMS_BOT_TOKEN: ${{ secrets.VK_TEAMS_BOT_TOKEN }}
VK_TEAMS_CHAT_ID: ${{ secrets.VK_TEAMS_CHAT_ID }}
with:
result: started
result: ${{ steps.build-step.outcome }}
name: build tag ${{ inputs.tag }}

View File

@@ -24,7 +24,7 @@ on:
jobs:
deploy:
if: contains(format(',{0},', vars.ADMIN_USERS), format(',{0},', github.actor)) || inputs.environment=='stage'
if: ${{ contains(format(',{0},', vars.ADMIN_USERS), format(',{0},', github.actor)) || startsWith(inputs.environment, 'stage') }}
runs-on: ubuntu-latest
env:
CR_REGISTRY: crp8vh46gd976oq8ipla
@@ -32,10 +32,12 @@ jobs:
TAG: ${{ inputs.tag }}
steps:
- name: notify
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/notify@HEAD
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/vk-notify@main
env:
VK_TEAMS_BOT_TOKEN: ${{ secrets.VK_TEAMS_BOT_TOKEN }}
VK_TEAMS_CHAT_ID: ${{ secrets.VK_TEAMS_CHAT_ID }}
with:
result: 'started'
secrets: ${{ toJSON(secrets) }}
name: deploy ${{ inputs.environment }} tag ${{ inputs.tag }}
- name: deploy
id: k8s_deploy
@@ -47,8 +49,10 @@ jobs:
migrate: ${{ inputs.migrate }}
- name: post-notify
if: always()
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/notify@HEAD
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/vk-notify@main
env:
VK_TEAMS_BOT_TOKEN: ${{ secrets.VK_TEAMS_BOT_TOKEN }}
VK_TEAMS_CHAT_ID: ${{ secrets.VK_TEAMS_CHAT_ID }}
with:
result: ${{ steps.k8s_deploy.outcome }}
name: k8s deploy ${{ inputs.environment }} tag ${{ inputs.tag }}
secrets: ${{ toJSON(secrets) }}
name: k8s deploy ${{ inputs.environment }} tag ${{ inputs.tag }}