Skip to content

Commit

Permalink
cicd(CHN-208): use .zip filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff-Tian committed Mar 22, 2024
1 parent d60b33c commit 76c91cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
git config --local user.name "GitHub Action"
git tag -a "${{ steps.get_current_version.outputs.current_version }}" -m "Generated tag from GitHub Actions"
git push origin "${{ steps.get_current_version.outputs.current_version }}"
ls -al
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -83,6 +85,6 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/java-artifacts/ # 使用先前下载的构件路径
asset_path: ${{ github.workspace }}/java-artifacts.zip # 使用先前下载的构件路径
asset_name: java-artifacts-${{ steps.get_current_version.outputs.current_version }}.zip
asset_content_type: application/zip
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.keycloak</groupId>
<artifactId>keycloak-services-social-weixin</artifactId>
<packaging>jar</packaging>
<version>0.5.19</version>
<version>0.5.20</version>

<name>Keycloak Services Social WeiXin</name>
<description>Keycloak 微信登录插件,支持 PC 端扫码登录、关注公众号即登录、手机微信等登录方式。</description>
Expand Down

0 comments on commit 76c91cd

Please sign in to comment.