name: Build and Push Docker Image on: push: branches: - "main" - "dev" release: types: [published] jobs: build-and-push: runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v3 - name: Set up Node.js uses: actions/setup-node@v2 with: node-version: '20' - name: Install pnpm run: npm install -g pnpm - name: Set up Docker uses: docker/setup-buildx-action@v3 - name: Login to Docker Hub uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Extract metadata uses: docker/metadata-action@v5 id: meta with: images: vontainment/v-gpt-node-app flavor: latest=false tags: | type=raw,value=main,enable=${{ github.ref == 'refs/heads/main' }} type=raw,value=dev,enable=${{ github.ref == 'refs/heads/dev' }} type=sha,priority=100,enable=${{ github.event_name == 'push' }} - name: Build and push Docker image uses: docker/build-push-action@v5 with: context: . file: apps/api/Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}