mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 08:29:33 +08:00 
			
		
		
		
	# Conflicts: # .env # .github/workflows/docker-build-and-release-services-images.yml # .github/workflows/merge-from-milestone.yml # .github/workflows/update-version-file-on-release.yml # README.md # README_zh_CN.md # cmd/main.go # config/discovery.yml # config/notification.yml # config/openim-api.yml # config/openim-msggateway.yml # config/openim-msgtransfer.yml # config/openim-push.yml # config/openim-rpc-auth.yml # config/openim-rpc-conversation.yml # config/openim-rpc-friend.yml # config/openim-rpc-group.yml # config/openim-rpc-msg.yml # config/openim-rpc-third.yml # config/openim-rpc-user.yml # config/share.yml # config/webhooks.yml # deployments/templates/config.yaml # docker-compose.yml # go.mod # go.sum # internal/api/init.go # internal/api/jssdk/tools.go # internal/api/msg.go # internal/api/prometheus_discovery.go # internal/api/router.go # internal/msggateway/init.go # internal/msggateway/ws_server.go # internal/msgtransfer/init.go # internal/msgtransfer/online_history_msg_handler.go # internal/msgtransfer/online_msg_to_mongo_handler.go # internal/push/push.go # internal/rpc/auth/auth.go # internal/rpc/conversation/conversation.go # internal/rpc/group/group.go # internal/rpc/msg/callback.go # internal/rpc/msg/server.go # internal/rpc/relation/friend.go # internal/rpc/relation/notification.go # internal/rpc/third/third.go # internal/rpc/user/user.go # internal/tools/cron/cron_task.go # magefile.go # pkg/common/cmd/api.go # pkg/common/cmd/msg_transfer.go # pkg/common/config/config.go # pkg/common/discovery/discoveryregister.go # pkg/common/prommetrics/prommetrics.go # pkg/common/startrpc/start.go # pkg/common/storage/database/mgo/cache.go # pkg/common/storage/database/mgo/msg_test.go # pkg/rpcli/auth.go # pkg/rpcli/tool.go # pkg/rpcli/user.go # test/stress-test-v2/main.go # test/stress-test/main.go # tools/seq/internal/seq.go # version/version
		
			
				
	
	
		
			120 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Update Version File on Release
 | |
| 
 | |
| on:
 | |
|   release:
 | |
|     types: [created]
 | |
| 
 | |
| jobs:
 | |
|   update-version:
 | |
|     runs-on: ubuntu-latest
 | |
|     env:
 | |
|       TAG_VERSION: ${{ github.event.release.tag_name }}
 | |
|     steps:
 | |
|       # Step 1: Checkout the original repository's code
 | |
|       - name: Checkout code
 | |
|         uses: actions/checkout@v4
 | |
|         with:
 | |
|           fetch-depth: 0
 | |
|           # submodules: "recursive"
 | |
| 
 | |
|       - name: Safe submodule initialization
 | |
|         run: |
 | |
|           echo "Checking for submodules..."
 | |
|           if [ -f .gitmodules ]; then
 | |
|             if [ -s .gitmodules ]; then
 | |
|               echo "Initializing submodules..."
 | |
|               if git submodule sync --recursive 2>/dev/null; then
 | |
|                 git submodule update --init --force --recursive || {
 | |
|                   echo "Warning: Some submodules failed to initialize, continuing anyway..."
 | |
|                 }
 | |
|               else
 | |
|                 echo "Warning: Submodule sync failed, continuing without submodules..."
 | |
|               fi
 | |
|             else
 | |
|               echo ".gitmodules exists but is empty, skipping submodule initialization"
 | |
|             fi
 | |
|           else
 | |
|             echo "No .gitmodules file found, no submodules to initialize"
 | |
|           fi
 | |
| 
 | |
|       # Step 2: Set up Git with official account
 | |
|       - name: Set up Git
 | |
|         run: |
 | |
|           git config --global user.name "github-actions[bot]"
 | |
|           git config --global user.email "github-actions[bot]@users.noreply.github.com"
 | |
| 
 | |
|       # Step 3: Check and delete existing tag
 | |
|       - name: Check and delete existing tag
 | |
|         run: |
 | |
|           if git rev-parse ${{ env.TAG_VERSION }} >/dev/null 2>&1; then
 | |
|             git tag -d ${{ env.TAG_VERSION }}
 | |
|             git push --delete origin ${{ env.TAG_VERSION }}
 | |
|           fi
 | |
| 
 | |
|       # Step 4: Update version file
 | |
|       - name: Update version file
 | |
|         run: |
 | |
|           mkdir -p version
 | |
|           echo -n "${{ env.TAG_VERSION }}" > version/version
 | |
| 
 | |
|       # Step 5: Commit and push changes
 | |
|       - name: Commit and push changes
 | |
|         env:
 | |
|           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | |
|         run: |
 | |
|           git add version/version
 | |
|           git commit -m "Update version to ${{ env.TAG_VERSION }}"
 | |
| 
 | |
|       # Step 6: Update tag
 | |
|       - name: Update tag
 | |
|         run: |
 | |
|           git tag -fa ${{ env.TAG_VERSION }} -m "Update version to ${{ env.TAG_VERSION }}"
 | |
|           git push origin ${{ env.TAG_VERSION }} --force
 | |
| 
 | |
|       # Step 7: Find and Publish Draft Release
 | |
|       - name: Find and Publish Draft Release
 | |
|         uses: actions/github-script@v7
 | |
|         with:
 | |
|           github-token: ${{ secrets.GITHUB_TOKEN }}
 | |
|           script: |
 | |
|             const { owner, repo } = context.repo;
 | |
|             const tagName = process.env.TAG_VERSION;
 | |
| 
 | |
|             try {
 | |
|               let release;
 | |
|               try {
 | |
|                 const response = await github.rest.repos.getReleaseByTag({
 | |
|                   owner,
 | |
|                   repo,
 | |
|                   tag: tagName
 | |
|                 });
 | |
|                 release = response.data;
 | |
|               } catch (tagError) {
 | |
|                 core.info(`Release not found by tag, searching all releases...`);
 | |
|                 const releases = await github.rest.repos.listReleases({
 | |
|                   owner,
 | |
|                   repo,
 | |
|                   per_page: 100
 | |
|                 });
 | |
|             
 | |
|                 release = releases.data.find(r => r.draft && r.tag_name === tagName);            
 | |
|                 if (!release) {
 | |
|                   throw new Error(`No release found with tag ${tagName}`);
 | |
|                 }
 | |
|               }
 | |
|             
 | |
|               await github.rest.repos.updateRelease({
 | |
|                 owner,
 | |
|                 repo,
 | |
|                 release_id: release.id,
 | |
|                 draft: false,
 | |
|                 prerelease: release.prerelease
 | |
|               });
 | |
|             
 | |
|               const status = release.draft ? "was draft" : "was already published";
 | |
|               core.info(`Release ${tagName} ensured to be published (${status}).`);
 | |
|             
 | |
|             } catch (error) {
 | |
|               core.warning(`Could not find or update release for tag ${tagName}: ${error.message}`);
 | |
|             }
 |