Skip to content

Commit 76f1ae3

Browse files
committed
add publish for generator
1 parent 99166de commit 76f1ae3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
username: ${{ github.actor }}
7070
password: ${{ secrets.GITHUB_TOKEN }}
7171

72-
- name: Publish app
72+
- name: Publish docs-builder
7373
run: |
7474
dotnet publish "src/docs-builder/docs-builder.csproj" \
7575
/t:PublishContainer \
@@ -79,3 +79,14 @@ jobs:
7979
-p ContainerRegistry=ghcr.io \
8080
-p ContainerImageTags='"${{ env.DOCKER_TAG }};${{ steps.bootstrap.outputs.full-version }}"' \
8181
-p ContainerRepository=${{ github.repository }} \
82+
83+
- name: Publish docs-generator
84+
run: |
85+
dotnet publish "src/docs-generator/docs-generator.csproj" \
86+
/t:PublishContainer \
87+
-p DebugType=none \
88+
-p ContainerUser=1001:1001 \
89+
-p ContainerBaseImage=${{ env.BASE_IMAGE }} \
90+
-p ContainerRegistry=ghcr.io \
91+
-p ContainerImageTags='"${{ env.DOCKER_TAG }};${{ steps.bootstrap.outputs.full-version }}"' \
92+
-p ContainerRepository=${{ github.repository }} \

0 commit comments

Comments
 (0)