Skip to content

Commit b598fa3

Browse files
SchlenkRSchlenkR
authored andcommitted
updated readme / GH action
1 parent 8b32939 commit b598fa3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build-and-publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
run: dotnet build -c Release
2626

2727
- name: Build docu
28-
shell: pwsh
29-
run: ./docu.ps1
28+
run: ./docu.sh
29+
shell: bash
3030

3131
- name: Upload docs artifact to GH pages
3232
uses: actions/upload-pages-artifact@v3

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ You need to have a recent .NET SDK installed, which is specified in `./global.js
7171

7272
There is a F# build script (`./build.fsx`) that can be used to perform several build tasks from command line.
7373

74-
For common tasks, there are powershell files located in the repo root:
74+
For common tasks, there are bash scripts located in the repo root:
7575

76-
* `./test.ps1`: Runs all tests (sources in `./src/Tests`).
76+
* `./test.sh`: Runs all tests (sources in `./src/Tests`).
7777
* You can pass args to this task. E.g. for executing only some tests:
78-
`./test.ps1 --filter Name~'Response Decompression'`
79-
* `./docu.ps1`: Rebuilds the FsHttp documentation site (sources in `./src/docs`).
80-
* `./docu-watch.ps1`: Run it if you are working on the documentation sources, and want to see the result in a browser.
81-
* `./publish.ps1`: Publishes all packages (FsHttp and it's integration packages for Newtonsoft and FSharp.Data) to NuGet.
78+
`./test.sh --filter Name~'Response Decompression'`
79+
* `./docu.sh`: Rebuilds the FsHttp documentation site (sources in `./src/docs`).
80+
* `./docu-watch.sh`: Run it if you are working on the documentation sources, and want to see the result in a browser.
81+
* `./publish.sh`: Publishes all packages (FsHttp and it's integration packages for Newtonsoft and FSharp.Data) to NuGet.
8282
* Always have a look at `./src/Directory.Build.props` and keep the file up-to-date.
8383

8484
## Credits

0 commit comments

Comments
 (0)