Skip to content

Commit 8e7fbf5

Browse files
committed
chore: rename branch to goshujin
1 parent 97365a8 commit 8e7fbf5

File tree

4 files changed

+8
-32
lines changed

4 files changed

+8
-32
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy
22
on:
33
push:
44
branches:
5-
- master
5+
- goshujin
66

77
jobs:
88
deploy:

.github/workflows/pr.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
branch:
1111
- ${{ github.head_ref }}
12-
- "master"
12+
- "goshujin"
1313

1414
permissions:
1515
contents: read
@@ -49,13 +49,13 @@ jobs:
4949
name: coverage-${{ github.head_ref }}
5050
path: coverage
5151

52-
- name: "Download master coverage artifacts"
52+
- name: "Download goshujin coverage artifacts"
5353
uses: actions/download-artifact@v4
5454
with:
55-
name: coverage-master
56-
path: coverage-master
55+
name: coverage-goshujin
56+
path: coverage-goshujin
5757

5858
- name: "Report Coverage"
5959
uses: davelosert/vitest-coverage-report-action@v2
6060
with:
61-
json-summary-compare-path: coverage-master/coverage-summary.json
61+
json-summary-compare-path: coverage-goshujin/coverage-summary.json

scripts/README.md

+1-25
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This is a wrapper script to make it easier to use our pastebin.
1111
**Installation**: download `pb` to your `PATH` and give it execution permission. For example:
1212

1313
```shell
14-
$ wget https://github.com/SharzyL/pastebin-worker/raw/master/scripts/pb
14+
$ wget https://github.com/SharzyL/pastebin-worker/raw/goshujin/scripts/pb
1515
$ install -Dm755 pb ~/.local/bin
1616
```
1717

@@ -71,27 +71,3 @@ Options:
7171
-v, --verbose display the 'underlying' curl command
7272
-d, --dry do a dry run, executing no 'curl' command at all
7373
```
74-
75-
## `deploy-static.sh`
76-
77-
Deploy html files to Cloudflare KV storage. The map of KV storage key and web page is recorded in `src/staticPages.js`. Usage:
78-
79-
```shell
80-
deploy-static.sh [--preview] [<file-name>...]
81-
```
82-
83-
## `md2html.sh`
84-
85-
Convert markdown to HTML, with a GitHub style CSS. Usage:
86-
87-
```shell
88-
md2html.sh <markdown-file> <html-file> <page-title>
89-
```
90-
91-
## `post-commit`
92-
93-
A git hook that deploy the code after each commit on `master` branch.
94-
95-
## `render.js`
96-
97-
A wrapper to render [LiquidJS](https://liquidjs.com) template file.

scripts/pb.fish

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# fish-shell completions for pb
2-
# See: https://github.com/SharzyL/pastebin-worker/tree/master/scripts
2+
# See: https://github.com/SharzyL/pastebin-worker/tree/goshujin/scripts
33

44
set -l commands p post u update g get d delete
55

0 commit comments

Comments
 (0)