-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.act
More file actions
59 lines (59 loc) · 1.1 KB
/
build.act
File metadata and controls
59 lines (59 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
entry: gh-start
nodes:
- id: gh-start
type: core/gh-start@v1
position:
x: 10
y: 10
- id: checkout
type: github.com/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
position:
x: 430
y: 720
- id: setup-python
type: github.com/actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
position:
x: 900
y: 640
inputs:
python-version: 3.x
- id: run
type: core/run@v1
position:
x: 1340
y: 530
inputs:
script: print("Hello, World!")
shell: python
connections: []
executions:
- src:
node: gh-start
port: exec-on_push
dst:
node: checkout
port: exec
- src:
node: gh-start
port: exec-on_pull_request
dst:
node: checkout
port: exec
- src:
node: gh-start
port: exec-on_workflow_dispatch
dst:
node: checkout
port: exec
- src:
node: checkout
port: exec-success
dst:
node: setup-python
port: exec
- src:
node: setup-python
port: exec-success
dst:
node: run
port: exec