Compare commits
	
		
			3 Commits
		
	
	
		
			b13f2c4eee
			...
			c7c122a505
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| c7c122a505 | |||
| d1bb4b7c83 | |||
| dc5118587c | 
| @@ -1,9 +1,7 @@ | ||||
| name: Gitea Release | ||||
|  | ||||
| on: | ||||
|   push: | ||||
|     tags: | ||||
|       - 'v*' | ||||
|   workflow_call:  # This workflow will only be triggered when called by another workflow | ||||
|  | ||||
| permissions: | ||||
|   contents: write      # Required for creating releases | ||||
| @@ -66,11 +64,11 @@ jobs: | ||||
|         echo "EOF" >> $GITHUB_OUTPUT | ||||
|      | ||||
|     - name: Create Release | ||||
|     env: | ||||
|       env: | ||||
|         GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} | ||||
|         GITEA_API_URL: ${{ secrets.GITEA_API_URL }} | ||||
|         GITEA_REPOSITORY: ${{ secrets.GITEA_REPOSITORY }} | ||||
|     run: | | ||||
|       run: | | ||||
|         # Create release using Gitea API | ||||
|         RESPONSE=$(curl -X POST \ | ||||
|         -H "Authorization: token ${GITEA_TOKEN}" \ | ||||
|   | ||||
							
								
								
									
										23
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										23
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							| @@ -6,11 +6,12 @@ on: | ||||
|       - 'v*' | ||||
|  | ||||
| jobs: | ||||
|   detect-and-run: | ||||
|   detect: | ||||
|     runs-on: ubuntu-latest | ||||
|     outputs: | ||||
|       platform: ${{ steps.platform.outputs.platform }} | ||||
|     steps: | ||||
|       - name: Checkout code | ||||
|         uses: actions/checkout@v4 | ||||
|       - uses: actions/checkout@v4 | ||||
|        | ||||
|       - name: Determine hosting platform | ||||
|         id: platform | ||||
| @@ -21,10 +22,12 @@ jobs: | ||||
|             echo "platform=gitea" >> $GITHUB_OUTPUT | ||||
|           fi | ||||
|  | ||||
|       - name: Run Release Workflow | ||||
|         run: | | ||||
|           if [[ "${{ steps.platform.outputs.platform }}" == "github" ]]; then | ||||
|             ./.github/workflows/providers/github-release.sh | ||||
|           else | ||||
|             ./.github/workflows/providers/gitea-release.sh | ||||
|           fi | ||||
|   gitea-release: | ||||
|     needs: detect | ||||
|     if: needs.detect.outputs.platform == 'gitea' | ||||
|     uses: ./.github/workflows/providers/gitea-release.yml | ||||
|  | ||||
|   github-release: | ||||
|     needs: detect | ||||
|     if: needs.detect.outputs.platform == 'github' | ||||
|     uses: ./.github/workflows/providers/github-release.yml | ||||
| @@ -1,5 +1,11 @@ | ||||
| # Changelog | ||||
|  | ||||
| ## [1.2.8] - 2025-02-18 | ||||
| ### Added | ||||
| - update version to 1.2.8 in platformio.ini; refactor Gitea and GitHub release workflows | ||||
| - update version to 1.2.7 in platformio.ini; adjust Gitea release workflow | ||||
|  | ||||
|  | ||||
| ## [1.2.6] - 2025-02-18 | ||||
| ### Added | ||||
| - update version to 1.2.6 in platformio.ini | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
| ; https://docs.platformio.org/page/projectconf.html | ||||
|  | ||||
| [common] | ||||
| version = "1.2.6" | ||||
| version = "1.2.8" | ||||
|  | ||||
| [env:esp32dev] | ||||
| platform = espressif32 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user