Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 30 Nov 07:37
· 26 commits to main since this release

Documentation v1.1.0: https://raw.githack.com/jaywcjlove/github-action-read-file/59c1051/index.html
Comparing Changes: v1.0.0...v1.1.0

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