-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
90 additions
and
97 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
|
@@ -26,6 +26,7 @@ gha-creds-*.json | |
|
||
# Binary build with make | ||
rdme | ||
runme | ||
|
||
# Logs | ||
*.log | ||
|
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,4 +1,4 @@ | ||
project_name: rdme | ||
project_name: runme | ||
|
||
snapshot: | ||
name_template: "{{ incpatch .Version }}-next" | ||
|
@@ -69,13 +69,13 @@ archives: | |
|
||
blobs: | ||
- provider: gs | ||
bucket: rdme-artifacts-b4e64f | ||
bucket: runme-artifacts-41eac6 | ||
ids: | ||
- cli | ||
folder: "{{ .Version }}" | ||
|
||
brews: | ||
- name: rdme | ||
- name: runme | ||
ids: | ||
- cli | ||
homepage: https://stateful.com | ||
|
@@ -84,7 +84,7 @@ brews: | |
owner: stateful | ||
name: homebrew-tap | ||
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}" | ||
url_template: "https://download.stateful.com/rdme/{{ .Version }}/{{ .ArtifactName }}" | ||
url_template: "https://download.stateful.com/runme/{{ .Version }}/{{ .ArtifactName }}" | ||
dependencies: [] | ||
skip_upload: auto | ||
folder: Formula | ||
|
@@ -93,16 +93,16 @@ brews: | |
name: release-bot | ||
email: [email protected] | ||
install: | | ||
bin.install "rdme" | ||
(bash_completion/"rdme").write `#{bin}/rdme completion bash` | ||
(fish_completion/"rdme.fish").write `#{bin}/rdme completion fish` | ||
(zsh_completion/"_rdme").write `#{bin}/rdme completion zsh` | ||
bin.install "runme" | ||
(bash_completion/"runme").write `#{bin}/runme completion bash` | ||
(fish_completion/"runme.fish").write `#{bin}/runme completion fish` | ||
(zsh_completion/"_runme").write `#{bin}/runme completion zsh` | ||
test: | | ||
assert_match "rdme #{version}", shell_output("#{bin}/rdme version") | ||
assert_match "runme #{version}", shell_output("#{bin}/runme version") | ||
nfpms: | ||
- id: cli | ||
package_name: rdme | ||
package_name: runme | ||
builds: | ||
- cli | ||
replacements: | ||
|
@@ -119,7 +119,7 @@ nfpms: | |
- rpm | ||
|
||
scoop: | ||
url_template: "https://download.stateful.com/rdme/{{ .Version }}/{{ .ArtifactName }}" | ||
url_template: "https://download.stateful.com/runme/{{ .Version }}/{{ .ArtifactName }}" | ||
bucket: | ||
owner: stateful | ||
name: scoop-bucket | ||
|
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
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
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
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
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
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,7 +1,7 @@ | ||
# WASM example | ||
|
||
This is an example of running rdme in a browser using WASM. | ||
This is an example of running runme in a browser using WASM. | ||
|
||
First, run `make wasm` from the root of the project. It will build rdme and copy proper files into this directory. | ||
First, run `make wasm` from the root of the project. It will build runme and copy proper files into this directory. | ||
|
||
Second, start a webserver in this directory, for example, `python -m http.server 9000` and open `http://localhost:9000` in a browser. In the Developer Tools > Console you should see parsed snippets of some README.md file. |
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
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,4 +1,4 @@ | ||
module github.com/stateful/rdme | ||
module github.com/stateful/runme | ||
|
||
go 1.18 | ||
|
||
|
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
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
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
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.