Skip to content

Commit 313dc46

Browse files
committed
ci(wip): build plugins
1 parent 4216eb7 commit 313dc46

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Build
3+
4+
on:
5+
workflow_run:
6+
workflows: [super-linter]
7+
types: [completed]
8+
9+
permissions: {}
10+
11+
jobs:
12+
lint:
13+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
14+
name: Lint
15+
runs-on: ubuntu-latest
16+
steps:
17+
- run: |
18+
echo "Lint success"
19+
20+
get-version:
21+
needs: lint
22+
name: Retrieve version information
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v4
26+
with:
27+
fetch-depth: 0

0 commit comments

Comments
 (0)