Skip to content

Commit bbf6cf7

Browse files
committed
feat: add deploy job to release workflow for SVN publishing
1 parent e21dcb4 commit bbf6cf7

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,13 @@ jobs:
4444
with:
4545
files: ${{ steps.zip.outputs.path }}
4646

47-
# deploy:
48-
# needs: upload
49-
# uses: ./.github/workflows/svn_push.yml
50-
# with:
51-
# ref: ${{ github.event.release.tag_name }}
47+
deploy:
48+
needs: install
49+
uses: codesnippetspro/.github-private/.github/workflows/publish_svn.yml@main
50+
with:
51+
repo: ${{ github.repository }}
52+
branch: ${{ github.ref_name }}
53+
tag: ${{ needs.install.outputs.version}}
54+
slug: ${{ github.repository }}
55+
artifact_url: ${{ needs.upload.outputs.artifact_url }}
56+
artifact_name: ${{ needs.upload.outputs.artifact_name }}

0 commit comments

Comments
 (0)