|  | @ -99,6 +99,17 @@ jobs: | 
			
		
	
		
		
			
				
					|  |  |       id: version_name |  |  |       id: version_name | 
			
		
	
		
		
			
				
					|  |  |       run: python scripts/getVersion.py ${{ matrix.variant }} >> $GITHUB_OUTPUT |  |  |       run: python scripts/getVersion.py ${{ matrix.variant }} >> $GITHUB_OUTPUT | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |  |  |  |     - name: Create tag | 
			
		
	
		
		
			
				
					|  |  |  |  |  |       uses: actions/github-script@v7 | 
			
		
	
		
		
			
				
					|  |  |  |  |  |       with: | 
			
		
	
		
		
			
				
					|  |  |  |  |  |         script: | | 
			
		
	
		
		
			
				
					|  |  |  |  |  |           github.rest.git.createRef({ | 
			
		
	
		
		
			
				
					|  |  |  |  |  |             owner: context.repo.owner, | 
			
		
	
		
		
			
				
					|  |  |  |  |  |             repo: context.repo.repo, | 
			
		
	
		
		
			
				
					|  |  |  |  |  |             ref: 'refs/tags/${{ steps.version_name.outputs.name }}', | 
			
		
	
		
		
			
				
					|  |  |  |  |  |             sha: context.sha | 
			
		
	
		
		
			
				
					|  |  |  |  |  |           }) | 
			
		
	
		
		
			
				
					|  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |     - name: Set Version |  |  |     - name: Set Version | 
			
		
	
		
		
			
				
					|  |  |       uses: cschleiden/replace-tokens@v1 |  |  |       uses: cschleiden/replace-tokens@v1 | 
			
		
	
		
		
			
				
					|  |  |       with: |  |  |       with: | 
			
		
	
	
		
		
			
				
					|  | @ -113,15 +124,17 @@ jobs: | 
			
		
	
		
		
			
				
					|  |  |       uses: ncipollo/release-action@v1 |  |  |       uses: ncipollo/release-action@v1 | 
			
		
	
		
		
			
				
					|  |  |       with: |  |  |       with: | 
			
		
	
		
		
			
				
					|  |  |         artifacts: ${{ steps.version_name.outputs.name }} |  |  |         artifacts: ${{ steps.version_name.outputs.name }} | 
			
		
	
		
		
			
				
					|  |  |  |  |  |         artifactErrorsFailBuild: true | 
			
		
	
		
		
			
				
					|  |  |  |  |  |         skipIfReleaseExists: true | 
			
		
	
		
		
			
				
					|  |  |         bodyFile: src/CHANGES.md |  |  |         bodyFile: src/CHANGES.md | 
			
		
	
		
		
			
				
					|  |  |         commit: "main" |  |  |  | 
			
		
	
		
		
			
				
					|  |  |         tag: ${{ steps.rename-binary-files.outputs.name }} |  |  |         tag: ${{ steps.rename-binary-files.outputs.name }} | 
			
		
	
		
		
			
				
					|  |  |         name: ${{ steps.rename-binary-files.outputs.name }} |  |  |         name: ${{ steps.rename-binary-files.outputs.name }} | 
			
		
	
		
		
			
				
					|  |  |  |  |  |         token: ${{ secrets.GITHUB_TOKEN }} | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |   deploy: |  |  |   deploy: | 
			
		
	
		
		
			
				
					|  |  |     name: Deploy Environments to fw.ahoydtu.de |  |  |     name: Deploy Environments to fw.ahoydtu.de | 
			
		
	
		
		
			
				
					
					|  |  |     needs: [build] |  |  |     needs: [build, release] | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					|  |  |     runs-on: ubuntu-latest |  |  |     runs-on: ubuntu-latest | 
			
		
	
		
		
			
				
					|  |  |     continue-on-error: false |  |  |     continue-on-error: false | 
			
		
	
		
		
			
				
					|  |  |     steps: |  |  |     steps: | 
			
		
	
	
		
		
			
				
					|  | @ -151,7 +164,7 @@ jobs: | 
			
		
	
		
		
			
				
					|  |  |       with: |  |  |       with: | 
			
		
	
		
		
			
				
					|  |  |         src: ${{ steps.version_name.outputs.name }}/ |  |  |         src: ${{ steps.version_name.outputs.name }}/ | 
			
		
	
		
		
			
				
					|  |  |         host: ${{ secrets.FW_SSH_HOST }} |  |  |         host: ${{ secrets.FW_SSH_HOST }} | 
			
		
	
		
		
			
				
					
					|  |  |         remote: ${{ secrets.FW_SSH_DIR }}/dev |  |  |         remote: ${{ secrets.FW_SSH_DIR }}/release | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					|  |  |         port: ${{ secrets.FW_SSH_PORT }} |  |  |         port: ${{ secrets.FW_SSH_PORT }} | 
			
		
	
		
		
			
				
					|  |  |         user: ${{ secrets.FW_SSH_USER }} |  |  |         user: ${{ secrets.FW_SSH_USER }} | 
			
		
	
		
		
			
				
					|  |  |         key: ${{ secrets.FW_SSH_KEY }} |  |  |         key: ${{ secrets.FW_SSH_KEY }} | 
			
		
	
	
		
		
			
				
					|  | 
 |