mirror of https://github.com/h44z/wg-portal.git
				
				
				
			Refactor docker-publish workflow
This commit is contained in:
		
							parent
							
								
									180b43608d
								
							
						
					
					
						commit
						9e1b6b6d91
					
				|  | @ -1,26 +1,20 @@ | ||||||
| name: Docker | name: Docker | ||||||
| 
 | 
 | ||||||
| # This workflow uses actions that are not certified by GitHub. |  | ||||||
| # They are provided by a third-party and are governed by |  | ||||||
| # separate terms of service, privacy policy, and support |  | ||||||
| # documentation. |  | ||||||
| 
 |  | ||||||
| on: | on: | ||||||
|  |   pull_request: | ||||||
|  |     branches: [master] | ||||||
|   push: |   push: | ||||||
|     branches: [ master, stable ] |     branches: [master, stable] | ||||||
|     # Publish vX.X.X tags as releases. |     # Publish vX.X.X tags as releases. | ||||||
|     tags: [ 'v*.*.*' ] |     tags: ["v*.*.*"] | ||||||
| 
 |  | ||||||
| env: |  | ||||||
|   # Use docker.io for Docker Hub if empty |  | ||||||
|   REGISTRY: ghcr.io |  | ||||||
|   # github.repository as <account>/<repo> |  | ||||||
|   IMAGE_NAME: ${{ github.repository }} |  | ||||||
| 
 | 
 | ||||||
|  | permissions: | ||||||
|  |   contents: read | ||||||
|  |   packages: write | ||||||
| 
 | 
 | ||||||
| jobs: | jobs: | ||||||
|   build-dockerhub: |   build-n-push: | ||||||
|     name: Push Docker image to Docker Hub |     name: Build and Push | ||||||
|     runs-on: ubuntu-latest |     runs-on: ubuntu-latest | ||||||
|     steps: |     steps: | ||||||
|       - name: Check out the repo |       - name: Check out the repo | ||||||
|  | @ -34,32 +28,43 @@ jobs: | ||||||
| 
 | 
 | ||||||
|       - name: Get Version |       - name: Get Version | ||||||
|         shell: bash |         shell: bash | ||||||
|         run: | |         run: echo "BUILD_VERSION=${GITHUB_REF_NAME}-${GITHUB_SHA::7}" >> $GITHUB_ENV | ||||||
|           echo "::set-output name=identifier::$(echo ${GITHUB_REF##*/})" |  | ||||||
|           echo "::set-output name=hash::$(echo ${GITHUB_SHA} | cut -c1-7)" |  | ||||||
|         id: get_version |  | ||||||
| 
 | 
 | ||||||
|       - name: Log in to Docker Hub |       - name: Login to Docker Hub | ||||||
|         if: github.event_name != 'pull_request' |         if: github.event_name != 'pull_request' | ||||||
|         uses: docker/login-action@v3 |         uses: docker/login-action@v3 | ||||||
|         with: |         with: | ||||||
|           username: ${{ secrets.DOCKER_USERNAME }} |           username: ${{ secrets.DOCKER_USERNAME }} | ||||||
|           password: ${{ secrets.DOCKER_PASSWORD }} |           password: ${{ secrets.DOCKER_PASSWORD }} | ||||||
| 
 | 
 | ||||||
|  |       - name: Login to GitHub Container Registry | ||||||
|  |         if: github.event_name != 'pull_request' | ||||||
|  |         uses: docker/login-action@v3 | ||||||
|  |         with: | ||||||
|  |           registry: ghcr.io | ||||||
|  |           username: ${{ github.actor }} | ||||||
|  |           password: ${{ secrets.GITHUB_TOKEN }} | ||||||
|  | 
 | ||||||
|       - name: Extract metadata (tags, labels) for Docker |       - name: Extract metadata (tags, labels) for Docker | ||||||
|         id: meta |         id: meta | ||||||
|         uses: docker/metadata-action@v5 |         uses: docker/metadata-action@v5 | ||||||
|         with: |         with: | ||||||
|           images: wgportal/wg-portal |           images: | | ||||||
|  |             wgportal/wg-portal | ||||||
|  |             ghcr.io/${{ github.repository }} | ||||||
|           flavor: | |           flavor: | | ||||||
|             latest=true |             latest=auto | ||||||
|             prefix= |             prefix= | ||||||
|             suffix= |             suffix= | ||||||
|           tags: | |           tags: | | ||||||
|  |             type=ref,event=tag | ||||||
|             type=ref,event=branch |             type=ref,event=branch | ||||||
|  |             type=ref,event=pr | ||||||
|             type=semver,pattern={{version}} |             type=semver,pattern={{version}} | ||||||
|             type=semver,pattern={{major}}.{{minor}} |             type=semver,pattern={{major}}.{{minor}} | ||||||
|             type=semver,pattern=v{{major}} |             type=semver,pattern=v{{major}} | ||||||
|  |             # set latest tag for default branch | ||||||
|  |             type=raw,value=latest,enable={{is_default_branch}} | ||||||
| 
 | 
 | ||||||
|       - name: Build and push Docker image |       - name: Build and push Docker image | ||||||
|         uses: docker/build-push-action@v5 |         uses: docker/build-push-action@v5 | ||||||
|  | @ -68,72 +73,7 @@ jobs: | ||||||
|           push: ${{ github.event_name != 'pull_request' }} |           push: ${{ github.event_name != 'pull_request' }} | ||||||
|           tags: ${{ steps.meta.outputs.tags }} |           tags: ${{ steps.meta.outputs.tags }} | ||||||
|           labels: ${{ steps.meta.outputs.labels }} |           labels: ${{ steps.meta.outputs.labels }} | ||||||
|  |           annotations: ${{ steps.meta.outputs.annotations }} | ||||||
|           platforms: linux/amd64,linux/arm64,linux/arm/v7 |           platforms: linux/amd64,linux/arm64,linux/arm/v7 | ||||||
|           build-args: | |           build-args: | | ||||||
|             BUILD_IDENTIFIER=${{ steps.get_version.outputs.identifier }} |             BUILD_VERSION=${{ env.BUILD_VERSION }} | ||||||
|             BUILD_VERSION=${{ steps.get_version.outputs.hash }} |  | ||||||
| 
 |  | ||||||
|   build-github: |  | ||||||
|     name: Push Docker image to Github Container Registry |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|     permissions: |  | ||||||
|       contents: read |  | ||||||
|       packages: write |  | ||||||
| 
 |  | ||||||
|     steps: |  | ||||||
|       - name: Checkout repository |  | ||||||
|         uses: actions/checkout@v4 |  | ||||||
| 
 |  | ||||||
|       - name: Set up QEMU |  | ||||||
|         uses: docker/setup-qemu-action@v3 |  | ||||||
| 
 |  | ||||||
|       - name: Set up Docker Buildx |  | ||||||
|         uses: docker/setup-buildx-action@v3 |  | ||||||
| 
 |  | ||||||
|       - name: Get Version |  | ||||||
|         shell: bash |  | ||||||
|         run: | |  | ||||||
|           echo "::set-output name=identifier::$(echo ${GITHUB_REF##*/})" |  | ||||||
|           echo "::set-output name=hash::$(echo ${GITHUB_SHA} | cut -c1-7)" |  | ||||||
|         id: get_version |  | ||||||
| 
 |  | ||||||
|       # Login against a Docker registry except on PR |  | ||||||
|       # https://github.com/docker/login-action |  | ||||||
|       - name: Log into registry ${{ env.REGISTRY }} |  | ||||||
|         if: github.event_name != 'pull_request' |  | ||||||
|         uses: docker/login-action@v3 |  | ||||||
|         with: |  | ||||||
|           registry: ${{ env.REGISTRY }} |  | ||||||
|           username: ${{ github.actor }} |  | ||||||
|           password: ${{ secrets.GITHUB_TOKEN }} |  | ||||||
| 
 |  | ||||||
|       # Extract metadata (tags, labels) for Docker |  | ||||||
|       # https://github.com/docker/metadata-action |  | ||||||
|       - name: Extract Docker metadata |  | ||||||
|         id: meta |  | ||||||
|         uses: docker/metadata-action@v5 |  | ||||||
|         with: |  | ||||||
|           images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} |  | ||||||
|           flavor: | |  | ||||||
|             latest=true |  | ||||||
|             prefix= |  | ||||||
|             suffix= |  | ||||||
|           tags: | |  | ||||||
|             type=ref,event=branch |  | ||||||
|             type=semver,pattern={{version}} |  | ||||||
|             type=semver,pattern={{major}}.{{minor}} |  | ||||||
|             type=semver,pattern=v{{major}} |  | ||||||
| 
 |  | ||||||
|       # Build and push Docker image with Buildx (don't push on PR) |  | ||||||
|       # https://github.com/docker/build-push-action |  | ||||||
|       - name: Build and push Docker image |  | ||||||
|         uses: docker/build-push-action@v5 |  | ||||||
|         with: |  | ||||||
|           context: . |  | ||||||
|           push: ${{ github.event_name != 'pull_request' }} |  | ||||||
|           tags: ${{ steps.meta.outputs.tags }} |  | ||||||
|           labels: ${{ steps.meta.outputs.labels }} |  | ||||||
|           platforms: linux/amd64,linux/arm64,linux/arm/v7 |  | ||||||
|           build-args: | |  | ||||||
|             BUILD_IDENTIFIER=${{ steps.get_version.outputs.identifier }} |  | ||||||
|             BUILD_VERSION=${{ steps.get_version.outputs.hash }} |  | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue