Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change pipelines #49

Merged
merged 2 commits into from
Nov 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- name: Clone aep.dev
uses: actions/checkout@v3
with:
repository: aep-dev/aep.dev
path: './aep-dev'
repository: aep-dev/aeps
path: './aeps'
- name: Clone Proto linter
uses: actions/checkout@v3
with:
Expand All @@ -33,6 +33,6 @@ jobs:
- name: Install all dependencies.
run: npm install
- name: Generate all static pages.
run: AEP_LOCATION=./aep-dev AEP_LINTER_LOC=./api-linter npm run generate
run: AEP_LOCATION=./aeps AEP_LINTER_LOC=./api-linter npm run generate
- name: Install, build, and upload your site output
uses: withastro/action@v2
2 changes: 1 addition & 1 deletion scripts/src/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ ${this.contents}
}
for (var tab of tabs) {
var new_tab = `
<Tabs>
<Tabs syncKey="exampleType">
<TabItem label="Protocol Buffers">
${tab['proto']}
</TabItem>
Expand Down
Loading