Skip to content

Commit

Permalink
add publish for generator
Browse files Browse the repository at this point in the history
  • Loading branch information
Mpdreamz committed Dec 9, 2024
1 parent 99166de commit 76f1ae3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Publish app
- name: Publish docs-builder
run: |
dotnet publish "src/docs-builder/docs-builder.csproj" \
/t:PublishContainer \
Expand All @@ -79,3 +79,14 @@ jobs:
-p ContainerRegistry=ghcr.io \
-p ContainerImageTags='"${{ env.DOCKER_TAG }};${{ steps.bootstrap.outputs.full-version }}"' \
-p ContainerRepository=${{ github.repository }} \
- name: Publish docs-generator
run: |
dotnet publish "src/docs-generator/docs-generator.csproj" \
/t:PublishContainer \
-p DebugType=none \
-p ContainerUser=1001:1001 \
-p ContainerBaseImage=${{ env.BASE_IMAGE }} \
-p ContainerRegistry=ghcr.io \
-p ContainerImageTags='"${{ env.DOCKER_TAG }};${{ steps.bootstrap.outputs.full-version }}"' \
-p ContainerRepository=${{ github.repository }} \

0 comments on commit 76f1ae3

Please sign in to comment.