Skip to content

Commit 934b3d3

Browse files
Merge pull request #568 from darkdoc/console_build_workflows
feat: Build the console plugin
2 parents c113f50 + 1f25cca commit 934b3d3

2 files changed

Lines changed: 26 additions & 1 deletion

File tree

.github/workflows/console.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Console
2+
3+
on:
4+
push:
5+
paths:
6+
- "console/"
7+
pull_request:
8+
paths:
9+
- "console/"
10+
11+
jobs:
12+
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v6
17+
- name: Build the console container
18+
run: |
19+
make console-build

.github/workflows/go.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Go
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'console/**'
7+
pull_request:
8+
paths-ignore:
9+
- 'console/**'
410

511
permissions:
612
contents: read

0 commit comments

Comments
 (0)