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 }}"