Skip to content

Commit 311f3be

Browse files
committed
update workflows
1 parent cb671e6 commit 311f3be

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

.github/workflows/deploy.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414
with:
15+
persist-credentials: false
1516
fetch-depth: 1
1617
- name: Extract tag
1718
id: extract_tag

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
public/
2+
.latest_tag

Taskfile.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
version: "3"
2+
vars:
3+
SERVICE_NAME: docs
4+
NAMESPACE: flags-gg
5+
tasks:
6+
make-temp-files:
7+
cmds:
8+
- task: get-latest-tag
9+
get-latest-tag:
10+
cmds:
11+
- |
12+
git fetch --tags
13+
latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
14+
if [[ -z "$latest_tag" ]]; then
15+
echo "0.0.1" > .latest_tag
16+
else
17+
echo $latest_tag | awk -F. '{printf "%d.%d.%d", $1, $2, $3}' > .latest_tag
18+
fi
19+
silent: true
20+
clean-git-file:
21+
cmds:
22+
- rm .latest_tag
23+
24+
# Deploy Commands
25+
deploy-latest-tag:
26+
cmds:
27+
- kubectl set image deployment/{{.SERVICE_NAME}} {{.SERVICE_NAME}}=containers.chewed-k8s.net/{{.NAMESPACE}}/{{.SERVICE_NAME}}:{{.LATEST_TAG}} -n {{.NAMESPACE}}
28+
- kubectl rollout restart deployment/{{.SERVICE_NAME}} -n {{.NAMESPACE}}
29+
vars:
30+
LATEST_TAG:
31+
sh: cat .latest_tag

0 commit comments

Comments
 (0)