From f39083b9a43a2537f1a3ee067aa9c77257e1df7e Mon Sep 17 00:00:00 2001 From: brendan <2bndy5@gmail.com> Date: Thu, 10 Dec 2020 18:06:19 -0800 Subject: [PATCH] fix step name in last step of build job --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 47e6ab2..a90da24 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 }}"