File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1- name : " Action Test"
1+ name : " Action Test (Ubuntu) "
22on :
33 push :
44 branches :
Original file line number Diff line number Diff line change 1+ name : " Action Test (Windows)"
2+ on :
3+ push :
4+ branches :
5+ - master
6+
7+ jobs :
8+ # test action works running from the graph
9+ test :
10+ runs-on : windows-latest
11+ steps :
12+ - name : Checkout
13+ uses : actions/checkout@v1
14+ - name : Run Workflow
15+ id : write_file
16+ uses : ./
17+ with :
18+ fileName : ' myTemporaryFile.txt'
19+ encodedString : ${{ secrets.SOME_ENCODED_STRING }} # SGVsbG8sIFdvcmxkIQ==
20+ - name : Echo file
21+ run : |
22+ echo ${{ steps.write_file.outputs.filePath }}
23+ - name : Upload Artifact
24+ uses : actions/upload-artifact@master
25+ with :
26+ name : ' final-file.txt'
27+ path : ${{ steps.write_file.outputs.filePath }}
You can’t perform that action at this time.
0 commit comments