Skip to content

Commit d9a09a8

Browse files
committed
test
1 parent f17d392 commit d9a09a8

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
contents: read
2323
packages: write
2424
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v6
27+
with:
28+
fetch-depth: 0
29+
2530
# Generate Docker tags, labels and annotations
2631
- name: Docker meta
2732
id: meta
@@ -59,6 +64,12 @@ jobs:
5964
cache-from: type=gha
6065
cache-to: type=gha,mode=max
6166

67+
- name: Create Git tag
68+
run: |
69+
TAG="0.0.${{ github.run_number }}"
70+
git tag "$TAG"
71+
git push origin "$TAG"
72+
6273
update-k8s:
6374
name: Update kir-dev/k8s
6475
runs-on: ubuntu-latest
@@ -78,5 +89,5 @@ jobs:
7889
configurationFile: .github/workflows/renovate-global.js
7990
token: ${{ secrets.KIR_DEV_BOT_PAT }}
8091
env:
81-
# LOG_LEVEL: debug
92+
LOG_LEVEL: debug
8293
RENOVATE_TOKEN: ${{ secrets.KIR_DEV_BOT_PAT }}

0 commit comments

Comments
 (0)