forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
73 lines (66 loc) · 1.98 KB
/
action.yml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: 'Jekyll Deploy Action'
description: >
A Github Action to deploy the Jekyll site conveniently for GitHub Pages
branding:
icon: 'command'
color: 'red'
inputs:
id:
description: The id according to os
required: true
owner:
description: 'The deploy owner'
required: false
actor:
description: 'The github username creating the commit'
required: false
token:
description: 'The deploy token'
required: false
provider:
description: 'The deploy provider'
required: true
credentials:
description: 'The gcloud credentials'
required: true
pauli_sum:
description: 'The pre-build configuration'
required: true
failure_status:
description: 'The deploy branch'
required: false
outputs:
all_outputs:
description: Collect all outputs
value: ${{ toJSON(steps.*.outputs) }}
runs:
#using: 'node20'
#main: '.github/run/main.js'
#post: '.github/run/post.js'
#post-if: 'success()'
using: composite
steps:
- name: Target Configuration
uses: eq19/eq19/.github/actions/3-exponentiation/6-grammar@v2
if: ${{ inputs.id == 3 && env.PASS == 'true' }}
id: exponentiation
with:
hub_username: ${{ inputs.docker_hub_username }}
hub_password: ${{ inputs.docker_hub_password }}
failure_status: ${{ inputs.failure_status }}
hub_token: ${{ inputs.docker_hub_token }}
credentials: ${{ inputs.credentials }}
action_path: ${{ github.action_path }}
image_name: ${{ inputs.image_name }}
token: ${{ inputs.token }}
- name: Profiling Feedback
uses: eq19/eq19/.github/actions/4-identition/6-grammar@v2
if: inputs.id == 4
id: identition
with:
token: ${{ inputs.token }}
image_name: ${{ inputs.image_name }}
credentials: ${{ inputs.credentials }}
hub_token: ${{ inputs.docker_hub_token }}
failure_status: ${{ inputs.failure_status }}
hub_username: ${{ inputs.docker_hub_username }}