diff --git a/README.md b/README.md index ea1021a..56a3c20 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,13 @@ Read file contents. steps: - name: Checkout repository uses: actions/checkout@v3 + - name: Read package.json id: package uses: juliangruber/read-file-action@v1 with: path: ./package.json + - name: Echo package.json run: echo "${{ steps.package.outputs.content }}" ```