* Always run yarn only on build platform with --platform=$BUILDPLATFORM * Remove optional dependencies (playwright + chromium) from build with --ignore-optional and move some devDependencies to be optional * Disable husky pre-commit hook checks on frontend Co-authored-by: sua yoo <sua@suayoo.com>
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Browsertrix Cloud Release Build
 | 
						|
 | 
						|
on:
 | 
						|
  release:
 | 
						|
    types: [published]
 | 
						|
 | 
						|
jobs:
 | 
						|
  btrix-release:
 | 
						|
    runs-on: ubuntu-22.04
 | 
						|
 | 
						|
    steps:
 | 
						|
      -
 | 
						|
        name: Checkout
 | 
						|
        uses: actions/checkout@v3
 | 
						|
 | 
						|
      -
 | 
						|
        name: Set up QEMU
 | 
						|
        uses: docker/setup-qemu-action@v2
 | 
						|
 | 
						|
      -
 | 
						|
        name: Set up Docker Buildx
 | 
						|
        uses: docker/setup-buildx-action@v2
 | 
						|
 | 
						|
      -
 | 
						|
        name: Login to Docker Hub
 | 
						|
        uses: docker/login-action@v2
 | 
						|
        with:
 | 
						|
          username: ${{ secrets.DOCKER_USERNAME }}
 | 
						|
          password: ${{ secrets.DOCKER_PASSWORD }}
 | 
						|
 | 
						|
      -
 | 
						|
        name: Set Env Vars
 | 
						|
        run: |
 | 
						|
          echo VERSION=`cat version.txt` >> $GITHUB_ENV
 | 
						|
          echo GIT_COMMIT_HASH=`git rev-parse --short HEAD` >> $GITHUB_ENV
 | 
						|
          echo GIT_BRANCH_NAME=`git rev-parse --abbrev-ref HEAD` >> $GITHUB_ENV          
 | 
						|
 | 
						|
      -
 | 
						|
        name: Build Backend
 | 
						|
        uses: docker/build-push-action@v4
 | 
						|
        with:
 | 
						|
          context: backend
 | 
						|
          platforms: linux/amd64,linux/arm64
 | 
						|
          push: true
 | 
						|
          tags: ${{ env.REPO_PREFIX }}webrecorder/browsertrix-backend:${{ env.VERSION }}, webrecorder/browsertrix-backend:latest
 | 
						|
          cache-from: type=gha,scope=backend
 | 
						|
          cache-to: type=gha,scope=backend,mode=max
 | 
						|
 | 
						|
      -
 | 
						|
        name: Build Frontend
 | 
						|
        uses: docker/build-push-action@v4
 | 
						|
        env:
 | 
						|
          HUSKY: 0
 | 
						|
        with:
 | 
						|
          context: frontend
 | 
						|
          platforms: linux/amd64,linux/arm64
 | 
						|
          push: true
 | 
						|
          build-args: |
 | 
						|
            VERSION=${{ env.VERSION }}
 | 
						|
            GIT_COMMIT_HASH=${{ env.GIT_COMMIT_HASH }}
 | 
						|
            GIT_BRANCH_NAME=${{ env.GIT_BRANCH_NAME }}            
 | 
						|
 | 
						|
          tags: ${{ env.REPO_PREFIX }}webrecorder/browsertrix-frontend:${{ env.VERSION }}, webrecorder/browsertrix-frontend:latest
 | 
						|
          cache-from: type=gha,scope=frontend
 | 
						|
          cache-to: type=gha,scope=frontend,mode=max
 |