Skip to content

Commit 518c995

Browse files
authored
Merge pull request #65 from smatechnologies/update-version-compatibility-info
add note on compatibility
2 parents f0f7f8c + ab19931 commit 518c995

File tree

5 files changed

+4627
-5006
lines changed

5 files changed

+4627
-5006
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v2
1313
with:
14-
node-version: '14'
14+
node-version: '18'
1515
- run: yarn install
1616
- run: yarn build

.github/workflows/release.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,12 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v2
1313
with:
14-
node-version: '14'
14+
node-version: '18'
1515
- uses: kheiakiyama/install-azcopy-action@v1
1616
with:
1717
version: 'v10'
1818
# copy content to new app
1919
- run: azcopy_v10 copy './docs' '${{ secrets.HELP_CONTENT_URL }}/content/${{ github.repository }}?${{ secrets.HELP_CONTENT_TOKEN }}' --recursive
2020
- run: azcopy_v10 copy './static' '${{ secrets.HELP_CONTENT_URL }}/content/${{ github.repository }}?${{ secrets.HELP_CONTENT_TOKEN }}' --recursive
2121
- run: azcopy_v10 copy './sidebars.js' '${{ secrets.HELP_CONTENT_URL }}/content/${{ github.repository }}?${{ secrets.HELP_CONTENT_TOKEN }}'
22-
# publish compiled output to existing app
23-
- run: yarn install
24-
- run: yarn build
25-
- run: azcopy_v10 copy 'build/*' '${{ secrets.DOCS_STORAGE_URL }}/${{ secrets.DOCS_STORAGE_PATH }}?${{ secrets.DOCS_STORAGE_KEY }}' --recursive
2622

docs/release-notes.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ sidebar_label: 'Release notes'
66

77
## z/OS LSAM 23.01.01
88

9+
:::info Note
10+
11+
z/OS Agent Version 23.01 is compatible with z/OS versions 1.11 - 3.1.
12+
13+
:::
14+
915
2023 October
1016

1117
**New Features**

docusaurus.config.js

+7-9
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ module.exports = {
3030
docs: {
3131
routeBasePath: '/',
3232
sidebarPath: require.resolve('./sidebars.js'),
33-
editUrl:
34-
'https://github.com/smatechnologies/zos-agent-docs/blob/develop',
3533
},
3634
theme: {
3735
customCss: require.resolve('./src/css/custom.css'),
@@ -43,11 +41,11 @@ module.exports = {
4341
},
4442
],
4543
],
46-
plugins: [
47-
[
48-
require.resolve('@cmfcmf/docusaurus-search-local'),
49-
{
50-
}
51-
],
52-
],
44+
// plugins: [
45+
// [
46+
// require.resolve('@cmfcmf/docusaurus-search-local'),
47+
// {
48+
// }
49+
// ],
50+
// ],
5351
};

0 commit comments

Comments
 (0)