Skip to content

Commit ff3be18

Browse files
committed
Update GitHub Actions
1 parent d53cddf commit ff3be18

5 files changed

Lines changed: 14 additions & 8 deletions

File tree

.github/actions/build/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
2+
name: Build
3+
24
runs:
3-
using: "Composite"
5+
using: Composite
46
steps:
57
- name: Install npm Modules
68
uses: ./.github/actions/install-npm-modules

.github/actions/execute-notebooks/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
2+
name: Execute Notebooks
3+
24
runs:
3-
using: "Composite"
5+
using: Composite
46
steps:
57
- name: Install Python Modules
68
uses: ./.github/actions/install-python-modules

.github/actions/install-npm-modules/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
2+
name: Install Node Modules
3+
24
runs:
3-
using: "Composite"
5+
using: Composite
46
steps:
57
- name: Setup Node.js
68
uses: actions/setup-node@v3

.github/actions/install-python-modules/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
2+
name: Install Python Modules
3+
24
runs:
3-
using: "Composite"
5+
using: Composite
46
steps:
57
- name: Setup Python
68
uses: actions/setup-python@v4

.github/workflows/preview.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88
- reopened
99
- synchronize
1010
- closed
11-
branches-ignore:
12-
- "**"
1311

1412
concurrency: preview-${{ github.ref }}
1513

@@ -22,12 +20,12 @@ jobs:
2220
uses: actions/checkout@v3
2321

2422
- name: Execute Notebooks
25-
uses: ./.github/actions/execute_notebooks
23+
uses: ./.github/actions/execute-notebooks
2624

2725
- name: Build
2826
uses: ./.github/actions/build
2927

3028
- name: Deploy preview
3129
uses: rossjrw/pr-preview-action@v1
3230
with:
33-
source-dir: ./build/
31+
source-dir: build

0 commit comments

Comments
 (0)