@@ -55,19 +55,90 @@ jobs:
5555 oss : ${{ contains(needs.version.outputs.release_version, 'PRE-RELEASE') && 'test-identity-main' || 'identity-main' }}
5656 enterprise : ${{ contains(needs.version.outputs.release_version, 'PRE-RELEASE') && 'test-enterprise-main' || 'enterprise-main' }}
5757 tag :
58- uses : walt-id/waltid-identity/.github/workflows/tag.yml@8fcefa7d4f599104fbcffc982133848eef3035ac
58+ uses : walt-id/waltid-identity/.github/workflows/tag.yml@40178bca5ee6dbc8fb3ec818d308e8b72b0c6dd3
59+ secrets : inherit
5960 needs : [ version, deploy ]
6061 with :
6162 version : ${{ needs.version.outputs.release_version }}
6263 enterprise-tag :
63- uses : walt-id/waltid-identity/.github/workflows/enterprise-tag.yml@8fcefa7d4f599104fbcffc982133848eef3035ac
64+ uses : walt-id/waltid-identity/.github/workflows/tag.yml@40178bca5ee6dbc8fb3ec818d308e8b72b0c6dd3
65+ secrets : inherit
66+ needs : [ version, deploy ]
67+ with :
68+ version : ${{ needs.version.outputs.release_version }}
69+ repository : walt-id/waltid-identity-enterprise
70+ docs-tag :
71+ uses : walt-id/waltid-identity/.github/workflows/tag.yml@40178bca5ee6dbc8fb3ec818d308e8b72b0c6dd3
72+ secrets : inherit
73+ needs : [ version, deploy ]
74+ with :
75+ version : ${{ needs.version.outputs.release_version }}
76+ repository : walt-id/waltid-docs
77+ quickstart-tag :
78+ uses : walt-id/waltid-identity/.github/workflows/tag.yml@40178bca5ee6dbc8fb3ec818d308e8b72b0c6dd3
79+ secrets : inherit
80+ needs : [ version, deploy ]
81+ with :
82+ version : ${{ needs.version.outputs.release_version }}
83+ repository : walt-id/waltid-enterprise-quickstart
84+ unified-build-tag :
85+ uses : walt-id/waltid-identity/.github/workflows/tag.yml@40178bca5ee6dbc8fb3ec818d308e8b72b0c6dd3
6486 secrets : inherit
6587 needs : [ version, deploy ]
6688 with :
6789 version : ${{ needs.version.outputs.release_version }}
90+ repository : walt-id/waltid-unified-build
6891 release :
6992 uses : walt-id/waltid-identity/.github/workflows/changelog.yml@cf46ed618f9b296fd9b63c7207ca288855bb5343
7093 secrets : inherit
7194 needs : [ tag ]
7295 with :
73- tag : ${{ needs.tag.outputs.tag }}
96+ tag : ${{ needs.tag.outputs.tag }}
97+ enterprise-release :
98+ name : Create Enterprise Release
99+ runs-on : ubuntu-latest
100+ needs : [ enterprise-tag ]
101+ steps :
102+ - name : Create Release
103+ uses : softprops/action-gh-release@v3
104+ with :
105+ token : ${{ secrets.GH_ACCESS_TOKEN }}
106+ repository : walt-id/waltid-identity-enterprise
107+ tag_name : ${{ needs.enterprise-tag.outputs.tag }}
108+ prerelease : ${{ contains(needs.enterprise-tag.outputs.tag, 'PRE-RELEASE') }}
109+ docs-release :
110+ name : Create Docs Release
111+ runs-on : ubuntu-latest
112+ needs : [ docs-tag ]
113+ steps :
114+ - name : Create Release
115+ uses : softprops/action-gh-release@v3
116+ with :
117+ token : ${{ secrets.GH_ACCESS_TOKEN }}
118+ repository : walt-id/waltid-docs
119+ tag_name : ${{ needs.docs-tag.outputs.tag }}
120+ prerelease : ${{ contains(needs.docs-tag.outputs.tag, 'PRE-RELEASE') }}
121+ quickstart-release :
122+ name : Create Quickstart Release
123+ runs-on : ubuntu-latest
124+ needs : [ quickstart-tag ]
125+ steps :
126+ - name : Create Release
127+ uses : softprops/action-gh-release@v3
128+ with :
129+ token : ${{ secrets.GH_ACCESS_TOKEN }}
130+ repository : walt-id/waltid-enterprise-quickstart
131+ tag_name : ${{ needs.quickstart-tag.outputs.tag }}
132+ prerelease : ${{ contains(needs.quickstart-tag.outputs.tag, 'PRE-RELEASE') }}
133+ unified-build-release :
134+ name : Create Unified Build Release
135+ runs-on : ubuntu-latest
136+ needs : [ unified-build-tag ]
137+ steps :
138+ - name : Create Release
139+ uses : softprops/action-gh-release@v3
140+ with :
141+ token : ${{ secrets.GH_ACCESS_TOKEN }}
142+ repository : walt-id/waltid-unified-build
143+ tag_name : ${{ needs.unified-build-tag.outputs.tag }}
144+ prerelease : ${{ contains(needs.unified-build-tag.outputs.tag, 'PRE-RELEASE') }}
0 commit comments