File tree Expand file tree Collapse file tree 5 files changed +1963
-11
lines changed Expand file tree Collapse file tree 5 files changed +1963
-11
lines changed Original file line number Diff line number Diff line change @@ -19,16 +19,15 @@ $ zinnia run test.js
19
19
20
20
## Release
21
21
22
- On a clean working tree, first bump semver ` SPARK_VERSION ` in ` lib/constants.js ` .
23
- Then, replacing ` $SPARK_VERSION ` with the new ` SPARK_VERSION ` :
22
+ On a clean working tree, run the following command:
24
23
25
24
``` bash
26
- $ git add .
27
- $ git commit -m v$SPARK_VERSION
28
- $ git tag -s v$SPARK_VERSION -m v$SPARK_VERSION
29
- $ git push
30
- $ git push origin v$SPARK_VERSION
25
+ $ ./release.sh < semver>
26
+ $ # Example
27
+ $ ./release.sh 1.0.0
31
28
```
32
29
33
- Go to GitHub releases and create a new release for the tag you just created.
34
- Use GitHub's changelog feature to fill out the release message.
30
+ Use GitHub's changelog feature to fill out the release notes.
31
+
32
+ Publish the new release and let the CI/CD workflow upload the sources
33
+ to IPFS & IPNS.
Original file line number Diff line number Diff line change 1
- export const SPARK_VERSION = '1.12.0 '
1
+ export const SPARK_VERSION = '1.12.1 '
2
2
export const MAX_CAR_SIZE = 200 * 1024 * 1024 // 200 MB
3
3
export const APPROX_ROUND_LENGTH_IN_MS = 20 * 60_000 // 20 minutes
4
4
export const RPC_URL = 'https://api.node.glif.io/'
Original file line number Diff line number Diff line change 6
6
import Spark from './lib/spark.js'
7
7
8
8
// The task to check, replace with your own values
9
- const cid = 'bafkreih25dih6ug3xtj73vswccw423b56ilrwmnos4cbwhrceudopdp5sq '
9
+ const cid = 'bafybeiepi56qxfcwqgpstg25r6sonig7y3pzd37lwambzmlcmbnujjri4a '
10
10
const minerId = 'f010479'
11
11
12
12
// Run the check
You can’t perform that action at this time.
0 commit comments