We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84e8ae5 commit 184305aCopy full SHA for 184305a
.github/actions/build-server/action.yml
@@ -32,5 +32,5 @@ runs:
32
- name: Upload csharp-server artifact
33
uses: actions/upload-artifact@v4
34
with:
35
- path: "server/csharp-server "
+ path: "server/csharp-server"
36
name: server-csharp-${{ inputs.version }}
server/generate-cs-server.sh
@@ -1,5 +1,5 @@
1
#!/bin/sh
2
-# run this from directory above, or with npm run generate:ts from parent directory.
+# run this from THIS DIRECTORY.
3
4
VERSION=${1:-"$(cat .version)"}
5
@@ -8,7 +8,7 @@ generate () {
8
docker run \
9
--rm \
10
--user $(id -u) \
11
- -v ${PWD}:/local \
+ -v ${PWD}/../:/local \
12
-e VERSION="$SHORT_VERSION" \
13
openapitools/openapi-generator-cli \
14
generate \
0 commit comments