-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from gopherguides/rename-module-md
rename module.md to hype.md
- Loading branch information
Showing
182 changed files
with
1,730 additions
and
450 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,26 @@ | ||
name: Generate README with Hype | ||
on: [pull_request] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.22.x" | ||
cache-dependency-path: subdir/go.sum | ||
|
||
- name: Install hype | ||
run: go install github.com/gopherguides/hype/cmd/hype@latest | ||
|
||
- name: Run hype | ||
run: pushd .hype;hype export -format=markdown -f module.md > ../README.md;popd | ||
|
||
- name: Commit README back to the repo | ||
run: |- | ||
git rev-parse --abbrev-ref HEAD | ||
git config user.name 'GitHub Actions' | ||
git config user.email '[email protected]' | ||
git diff --quiet || (git add README.md && git commit -am "Updated README") | ||
git push origin ${{github.event.pull_request.head.ref}} | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.22.x" | ||
cache-dependency-path: subdir/go.sum | ||
- name: Install hype | ||
run: go install github.com/gopherguides/hype/cmd/hype@latest | ||
- name: Run hype | ||
run: hype export -format=markdown -f hype.md > README.md | ||
- name: Commit README back to the repo | ||
run: |- | ||
git rev-parse --abbrev-ref HEAD | ||
git config user.name 'GitHub Actions' | ||
git config user.email '[email protected]' | ||
git diff --quiet || (git add README.md && git commit -am "Updated README") | ||
git push origin ${{github.event.pull_request.head.ref}} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.