1 parent f17d392 commit d9a09a8Copy full SHA for d9a09a8
1 file changed
.github/workflows/deploy.yml
@@ -22,6 +22,11 @@ jobs:
22
contents: read
23
packages: write
24
steps:
25
+ - name: Checkout
26
+ uses: actions/checkout@v6
27
+ with:
28
+ fetch-depth: 0
29
+
30
# Generate Docker tags, labels and annotations
31
- name: Docker meta
32
id: meta
@@ -59,6 +64,12 @@ jobs:
59
64
cache-from: type=gha
60
65
cache-to: type=gha,mode=max
61
66
67
+ - name: Create Git tag
68
+ run: |
69
+ TAG="0.0.${{ github.run_number }}"
70
+ git tag "$TAG"
71
+ git push origin "$TAG"
72
62
73
update-k8s:
63
74
name: Update kir-dev/k8s
75
runs-on: ubuntu-latest
@@ -78,5 +89,5 @@ jobs:
78
89
configurationFile: .github/workflows/renovate-global.js
79
90
token: ${{ secrets.KIR_DEV_BOT_PAT }}
80
91
env:
81
- # LOG_LEVEL: debug
92
+ LOG_LEVEL: debug
82
93
RENOVATE_TOKEN: ${{ secrets.KIR_DEV_BOT_PAT }}
0 commit comments