File tree 1 file changed +15
-13
lines changed
1 file changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -51,16 +51,18 @@ jobs:
51
51
52
52
- name : Lint
53
53
run : bun lint
54
- - name : Check version
55
- shell : bash
56
- run : |
57
- # check for version changes
58
- ./update-version.sh
59
- # Check if any changes were made in README.md files
60
- if [[ -n "$(git status --porcelain -- '**/README.md')" ]]; then
61
- echo "Version mismatch detected. Please run ./update-version.sh and commit the updated README.md files."
62
- git diff -- '**/README.md'
63
- exit 1
64
- else
65
- echo "No version mismatch detected. All versions are up to date."
66
- fi
54
+ # Disable version check until https://github.com/coder/modules/pull/426 is merged.
55
+ # This will alow us to use seperate versioning for each module without failing CI. The backend already supports that.
56
+ # - name: Check version
57
+ # shell: bash
58
+ # run: |
59
+ # # check for version changes
60
+ # ./update-version.sh
61
+ # # Check if any changes were made in README.md files
62
+ # if [[ -n "$(git status --porcelain -- '**/README.md')" ]]; then
63
+ # echo "Version mismatch detected. Please run ./update-version.sh and commit the updated README.md files."
64
+ # git diff -- '**/README.md'
65
+ # exit 1
66
+ # else
67
+ # echo "No version mismatch detected. All versions are up to date."
68
+ # fi
You can’t perform that action at this time.
0 commit comments