mirror of
				https://github.com/appleboy/scp-action.git
				synced 2025-10-31 09:03:47 +00:00 
			
		
		
		
	- Update actions/setup-go to v6 in the goreleaser workflow - Update tj-actions/changed-files to v47 in stable and testing workflows Signed-off-by: appleboy <appleboy.tw@gmail.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			648 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			648 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Goreleaser
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     tags:
 | |
|       - "*"
 | |
| 
 | |
| permissions:
 | |
|   contents: write
 | |
| 
 | |
| jobs:
 | |
|   goreleaser:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v4
 | |
|         with:
 | |
|           fetch-depth: 0
 | |
| 
 | |
|       - name: Setup go
 | |
|         uses: actions/setup-go@v6
 | |
|         with:
 | |
|           go-version: "^1"
 | |
| 
 | |
|       - name: Run GoReleaser
 | |
|         uses: goreleaser/goreleaser-action@v6
 | |
|         with:
 | |
|           # either 'goreleaser' (default) or 'goreleaser-pro'
 | |
|           distribution: goreleaser
 | |
|           version: latest
 | |
|           args: release --clean
 | |
|         env:
 | |
|           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 |