File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 name : Build and push Docker image
2020 runs-on : ubuntu-latest
2121 permissions :
22- contents : read
22+ contents : write
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
5964 cache-from : type=gha
6065 cache-to : type=gha,mode=max
6166
67+ - name : Create Git tag
68+ run : |
69+ TAG_NAME="0.0.${{ github.run_number }}"
70+ git config user.name "github-actions[bot]"
71+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
72+ git tag "$TAG_NAME"
73+ git push origin "$TAG_NAME"
74+
6275 update-k8s :
6376 name : Update kir-dev/k8s
6477 runs-on : ubuntu-latest
7891 configurationFile : .github/workflows/renovate-global.js
7992 token : ${{ secrets.KIR_DEV_BOT_PAT }}
8093 env :
81- # LOG_LEVEL: debug
94+ LOG_LEVEL : debug
8295 RENOVATE_TOKEN : ${{ secrets.KIR_DEV_BOT_PAT }}
You can’t perform that action at this time.
0 commit comments