27 lines
No EOL
676 B
YAML
27 lines
No EOL
676 B
YAML
name: "Action Test (Windows)"
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
# test action works running from the graph
|
|
test:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Run Workflow
|
|
id: write_file
|
|
uses: ./
|
|
with:
|
|
fileName: 'myTemporaryFile.txt'
|
|
encodedString: ${{ secrets.SOME_ENCODED_STRING }} # SGVsbG8sIFdvcmxkIQ==
|
|
- name: Echo file
|
|
run: |
|
|
echo ${{ steps.write_file.outputs.filePath }}
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@master
|
|
with:
|
|
name: 'final-file.txt'
|
|
path: ${{ steps.write_file.outputs.filePath }} |