Skip to content

Commit c825256

Browse files
authored
fix: mount git host credentials (#9)
## Summary - bind host git configuration and credential store into the devcontainer for authenticated pushes - expand release workflow tag filter to allow stable semantic tags ## Testing - not run (infrastructure change)
2 parents 2bb534a + de8e596 commit c825256

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.devcontainer/devcontainer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@
7171
// target/container path ca not be dynamic
7272
"mounts": [
7373
"source=${localEnv:HOME}/.codex,target=/home/node/.codex,type=bind,consistency=cached",
74-
"source=${localEnv:HOME}/.bash_history,target=/home/node/.bash_history,type=bind,consistency=cached"
74+
"source=${localEnv:HOME}/.bash_history,target=/home/node/.bash_history,type=bind,consistency=cached",
75+
"source=${localEnv:HOME}/.gitconfig,target=/home/node/.gitconfig,type=bind,consistency=cached",
76+
"source=${localEnv:HOME}/.git-credentials,target=/home/node/.git-credentials,type=bind,consistency=cached"
7577
]
7678
}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- "v*.*.*-*"
6+
- "v*"
77

88
jobs:
99
publish:

0 commit comments

Comments
 (0)