Skip to content

Commit dadc489

Browse files
authored
Merge pull request #3 from gilesknap/ci3
Final fixes to CI and docs
2 parents eb2d04f + ac0fd75 commit dadc489

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.devcontainer/features/bash-config/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// a default beta version that is replaced by CI when doing tagged releases
66
"version": "0.0.1-b1",
77
"description": "Lightweight BASH setup with eternal history and PS1 tweaks. Fully configurable.",
8-
"documentationURL": "https://raw.githubusercontent.com/DiamondRC/devcontainer-features/refs/heads/main/.devcontainer/features/bash-config/README.md",
8+
"documentationURL": "https://raw.githubusercontent.com/DiamondLightSource/devcontainer-features/refs/heads/main/.devcontainer/features/bash-config/README.md",
99
"containerEnv": {
1010
"CONFIG_FOLDER": "/bash-config",
1111
"CONFIG_STAGING": "/bash-config-staging"

.github/workflows/_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
- name: patch in version tag
1717
# patch the version tag if the version is a valid semver. If not then
18-
# default to 0.0.0-b1 (only when using workflow_dispatch for tests)
18+
# default to 0.0.1-b1 (only when using workflow_dispatch for tests)
1919
run: |
2020
if [[ ${{ github.ref_name }} =~ ^[0-9]+\.[0-9]+.+ ]] ; then
21-
sed -i s/0\.0\.0-b1/${{ github.ref_name }}/ $(find .devcontainer -name devcontainer-feature.json)
21+
sed -i s/0\.0\.1-b1/${{ github.ref_name }}/ $(find .devcontainer -name devcontainer-feature.json)
2222
# dump the modified json for debugging
2323
cat $(find .devcontainer -name devcontainer-feature.json)
2424
fi

0 commit comments

Comments
 (0)