We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 734f311 commit 32cb122Copy full SHA for 32cb122
1 file changed
.github/workflows/test_action.yaml
@@ -1,4 +1,4 @@
1
-# .github/workflow/test_action.yaml
+# .github/workflows/test_action.yaml
2
name: Test Action
3
on: [push]
4
@@ -10,11 +10,11 @@ jobs:
10
- name: Checkout
11
uses: actions/checkout@v2
12
- name: Fetch num squared
13
- id: get_square
14
- uses: ./ # Uses an action in the root directory
+ id: get_square
+ uses: ./ # Uses an action in the root directory
15
# or use a released Github Action
16
- # uses: shipyard/github-action/fetch-shipyard-env@1.0.0
17
- with:
18
- num: 11
+ # uses: shipyard/github-action/fetch-shipyard-env@1.0.0
+ with:
+ num: 11
19
- name: Print the square
20
run: echo "${{ steps.get_square.outputs.num_squared }}"
0 commit comments