Skip to content

Commit

Permalink
fix step name in last step of build job
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Dec 11, 2020
1 parent 27a9f3a commit f39083b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@ on:
branches: [ master ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
jobs:
Build:
runs-on: ubuntu-latest
steps:
# Checkout code
- name: Checkout this Repo
uses: actions/checkout@v2

# # print contents of GITHUB_WORKSPACE dir
# - name: verify contents
# run: ls "${{ github.workspace }}"

# Runs a this repo's action
- name: Run Build action
id: builder
uses: 2bndy5/rmskin-action@master
# with:
# path: ${{ github.workspace }}

# Use the output from the `builder` step
- name: Print the output path & filename
- name: Print the output filename
run: echo "The output file was ${{ steps.builder.outputs.arc_name }}"

0 comments on commit f39083b

Please sign in to comment.