Documentation v1.1.1: https://raw.githack.com/jaywcjlove/github-action-read-file/76c7e47/index.html
Comparing Changes: v1.1.0...v1.1.1
- π chore: update workflows config. 0ac0040 @jaywcjlove
- π doc: Update README.md 9f30110 @jaywcjlove
- name: Read README.md
id: package
uses: jaywcjlove/github-action-read-file@main
with:
path: package.json
- name: Echo package.json
run: echo "${{ steps.package.outputs.content }}"
Specify the branch to read the file content
- name: Read README.md(gh-pages)
id: ghpages
uses: jaywcjlove/github-action-read-file@main
with:
branch: gh-pages
path: README.md
- name: Echo README.md(gh-pages)
run: echo "${{ steps.ghpages.outputs.content }}"