Skip to content

Commit

Permalink
chore(docs): compatibility matrix tool now points to correct doc loca…
Browse files Browse the repository at this point in the history
…tion (#6874)

Fix for the [broken build](https://github.com/winglang/wing/actions/runs/9853241327/job/27205814936).

Includes the new path to the compatibility matrix location in the compatibility matrix tool.

## Checklist

- [ ] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted)
- [ ] Description explains motivation and solution
- [ ] Tests added (always)
- [ ] Docs updated (only required for features)
- [ ] Added `pr/e2e-full` label if this feature requires end-to-end testing

*By submitting this pull request, I confirm that my contribution is made under the terms of the [Wing Cloud Contribution License](https://github.com/winglang/wing/blob/main/CONTRIBUTION_LICENSE.md)*.
  • Loading branch information
boyney123 authored Jul 9, 2024
1 parent 723bf12 commit 8c92b10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/matrix-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
base: main
add-paths: docs/**
commit-message: |-
Updates the [Compatibility Matrix](https://www.winglang.io/docs/standard-library/compatibility-matrix)
Updates the [Compatibility Matrix](https://www.winglang.io/docs/api/standard-library/compatibility-matrix)
[Workflow Run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
Expand Down
2 changes: 1 addition & 1 deletion tools/compatibility-matrix-automation/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## compatibility matrix automation

A small program that is used for taking test output files, and use them in order to update the compatibility matrix (can be found here: https://www.winglang.io/docs/standard-library/compatibility-matrix)
A small program that is used for taking test output files, and use them in order to update the compatibility matrix (can be found here: https://www.winglang.io/docs/api/standard-library/compatibility-matrix)

To run the script:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { CompatibilityMatrix, CompatibilitySets } from "./types";
export const SKIPPED_RESOURCES = ["TestRunner", "State"];
export const MATRIX_PATH = join(
__dirname,
"../../../docs/docs/04-standard-library/compatibility/compatibility.json"
"../../../docs/api/04-standard-library/compatibility/compatibility.json"
);
export const OUT_PATH = join(__dirname, "../../../out.json");

Expand Down

0 comments on commit 8c92b10

Please sign in to comment.