Skip to content
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
26 changes: 13 additions & 13 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand All @@ -45,12 +45,12 @@ jobs:

steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand All @@ -72,12 +72,12 @@ jobs:

steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand All @@ -100,12 +100,12 @@ jobs:

steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand All @@ -125,12 +125,12 @@ jobs:

steps:
- name: Checkout this repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
lfs: true

- name: Checkout actions repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: Exabyte-io/actions
token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand All @@ -152,12 +152,12 @@ jobs:
node-version:
- 20.x
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
lfs: true

- name: Setup NodeJS
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
Expand All @@ -179,7 +179,7 @@ jobs:
FOLDER: docs #directory to generate index

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
# If you're changing the branch from main,
# also change the `main` in `refs/heads/main`
# below accordingly.
Expand Down
76 changes: 76 additions & 0 deletions dist/js/schema/software_directory/modeling/lammps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"$id": "software-directory/modeling/lammps",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LAMMPS",
"type": "object",
"properties": {
"name": {
"enum": [
"lammps"
],
"description": "entity name",
"type": "string"
},
"summary": {
"enum": [
"LAMMPS"
],
"description": "Application's short description.",
"type": "string"
},
"version": {
"enum": [
"2025.07.22.2"
],
"description": "Application version. e.g. 5.3.5",
"type": "string"
},
"build": {
"enum": [
"GNU",
"Intel",
"CUDA"
],
"description": "Application build. e.g. VTST",
"type": "string"
},
"exec": {
"enum": [
"lmp"
]
},
"shortName": {
"description": "The short name of the application. e.g. qe",
"type": "string"
},
"isDefault": {
"description": "Whether the build is the default build",
"type": "boolean",
"default": false
},
"hasAdvancedComputeOptions": {
"description": "Whether advanced compute options are present",
"type": "boolean"
},
"isLicensed": {
"description": "Whether licensing is present",
"type": "boolean"
},
"_id": {
"description": "entity identity",
"type": "string"
},
"slug": {
"description": "entity slug",
"type": "string"
},
"systemName": {
"type": "string"
},
"schemaVersion": {
"description": "entity's schema version. Used to distinct between different schemas.",
"type": "string",
"default": "2022.8.16"
}
}
}
2 changes: 1 addition & 1 deletion dist/js/schemas.json

Large diffs are not rendered by default.

49 changes: 49 additions & 0 deletions dist/js/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55086,6 +55086,55 @@ export interface EspressoAppSchema {
summary?: "Quantum Espresso";
version?: "5.2.1" | "5.4.0" | "6.0.0" | "6.3" | "6.4.1" | "6.5.0" | "6.6.0" | "6.7.0" | "6.8.0" | "7.0" | "7.2" | "7.3";
}
/** Schema dist/js/schema/software_directory/modeling/lammps.json */
export interface LAMMPS {
/**
* entity name
*/
name?: "lammps";
/**
* Application's short description.
*/
summary?: "LAMMPS";
/**
* Application version. e.g. 5.3.5
*/
version?: "2025.07.22.2";
/**
* Application build. e.g. VTST
*/
build?: "GNU" | "Intel" | "CUDA";
exec?: "lmp";
/**
* The short name of the application. e.g. qe
*/
shortName?: string;
/**
* Whether the build is the default build
*/
isDefault?: boolean;
/**
* Whether advanced compute options are present
*/
hasAdvancedComputeOptions?: boolean;
/**
* Whether licensing is present
*/
isLicensed?: boolean;
/**
* entity identity
*/
_id?: string;
/**
* entity slug
*/
slug?: string;
systemName?: string;
/**
* entity's schema version. Used to distinct between different schemas.
*/
schemaVersion?: string;
}
/** Schema dist/js/schema/software_directory/modeling/nwchem.json */
export interface NWChem {
/**
Expand Down
Loading
Loading