Skip to content

Commit 341956d

Browse files
authored
Enabled GHA with template workflow (#343)
Signed-off-by: Matthew B White <whitemat@uk.ibm.com>
1 parent c02ca32 commit 341956d

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/build.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright the Hyperledger Fabric contributors. All rights reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
name: fabric-chaincode-node-build
5+
6+
on:
7+
push:
8+
branches:
9+
- main
10+
pull_request:
11+
branches:
12+
- main
13+
create:
14+
tags:
15+
- "*"
16+
workflow_dispatch:
17+
18+
jobs:
19+
build:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: placeholder
23+
run: |
24+
ls -lart
25+
echo "Hello!"

0 commit comments

Comments
 (0)