mirror of
				https://github.com/nadoo/glider.git
				synced 2025-11-04 07:42:38 +08:00 
			
		
		
		
	ci: use the latest go version
This commit is contained in:
		
							parent
							
								
									83a43b7e0c
								
							
						
					
					
						commit
						ce85f15c4b
					
				
							
								
								
									
										40
									
								
								.github/workflows/build.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										40
									
								
								.github/workflows/build.yml
									
									
									
									
										vendored
									
									
								
							@ -1,35 +1,31 @@
 | 
				
			|||||||
name: Build
 | 
					name: Build
 | 
				
			||||||
on: [push]
 | 
					on: [push, pull_request]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
 | 
					 | 
				
			||||||
  test:
 | 
					 | 
				
			||||||
    name: Test
 | 
					 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					 | 
				
			||||||
    steps:
 | 
					 | 
				
			||||||
      - name: Checkout
 | 
					 | 
				
			||||||
        uses: actions/checkout@v2
 | 
					 | 
				
			||||||
      - name: Set up Go
 | 
					 | 
				
			||||||
        uses: actions/setup-go@v2
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          go-version: '1.17'
 | 
					 | 
				
			||||||
      - name: Go Env
 | 
					 | 
				
			||||||
        run: go env
 | 
					 | 
				
			||||||
      - name: Test
 | 
					 | 
				
			||||||
        run: go test -v .
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  build:
 | 
					  build:
 | 
				
			||||||
    name: Build
 | 
					    name: Build
 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    needs: [test]
 | 
					 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - name: Checkout
 | 
					      - name: Checkout
 | 
				
			||||||
        uses: actions/checkout@v2
 | 
					        uses: actions/checkout@v2
 | 
				
			||||||
 | 
					        with:
 | 
				
			||||||
 | 
					          fetch-depth: 0
 | 
				
			||||||
 | 
					      - name: Get Go version
 | 
				
			||||||
 | 
					        run: |
 | 
				
			||||||
 | 
					          echo "GO_VERSION=$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | grep $(grep -P "go \d+\." go.mod | cut -d " " -f2) | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g')" >> $GITHUB_ENV
 | 
				
			||||||
      - name: Set up Go
 | 
					      - name: Set up Go
 | 
				
			||||||
        uses: actions/setup-go@v2
 | 
					        uses: actions/setup-go@v2
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          go-version: '1.17'
 | 
					          go-version: ${{ env.GO_VERSION}}
 | 
				
			||||||
      - name: Go Env
 | 
					      - name: Test
 | 
				
			||||||
        run: go env
 | 
					        run: go test -v .
 | 
				
			||||||
      - name: Build
 | 
					      - name: Build
 | 
				
			||||||
        run: go build -v .
 | 
					        run: go build -v .
 | 
				
			||||||
 | 
					      - name: Run GoReleaser
 | 
				
			||||||
 | 
					        uses: goreleaser/goreleaser-action@v2
 | 
				
			||||||
 | 
					        if: startsWith(github.ref, 'refs/tags/')
 | 
				
			||||||
 | 
					        with:
 | 
				
			||||||
 | 
					          version: latest
 | 
				
			||||||
 | 
					          args: release --rm-dist
 | 
				
			||||||
 | 
					        env:
 | 
				
			||||||
 | 
					          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
				
			||||||
							
								
								
									
										28
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										28
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							@ -1,28 +0,0 @@
 | 
				
			|||||||
name: Release
 | 
					 | 
				
			||||||
on:
 | 
					 | 
				
			||||||
  push:
 | 
					 | 
				
			||||||
    tags:
 | 
					 | 
				
			||||||
      - v*
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
jobs:
 | 
					 | 
				
			||||||
  release:
 | 
					 | 
				
			||||||
    name: Release on GitHub
 | 
					 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					 | 
				
			||||||
    steps:
 | 
					 | 
				
			||||||
      - name: Checkout
 | 
					 | 
				
			||||||
        uses: actions/checkout@v2
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          fetch-depth: 0
 | 
					 | 
				
			||||||
      - name: Set up Go
 | 
					 | 
				
			||||||
        uses: actions/setup-go@v2
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          go-version: '1.17'
 | 
					 | 
				
			||||||
      - name: Go Env
 | 
					 | 
				
			||||||
        run: go env
 | 
					 | 
				
			||||||
      - name: Run GoReleaser
 | 
					 | 
				
			||||||
        uses: goreleaser/goreleaser-action@v2
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          version: latest
 | 
					 | 
				
			||||||
          args: release --rm-dist
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user