name: Redpanda on: push: branches: - master env: REGISTRY: ghcr.io IMAGE_NAME: aldy505/redpanda-ci jobs: build: name: Build runs-on: ubuntu-latest timeout-minutes: 300 permissions: contents: read packages: write steps: - name: Checkout code uses: actions/checkout@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Log in to the Container registry uses: docker/login-action@v2 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@v4 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} flavor: | latest=true tags: | type=sha - name: Build and push Docker image uses: docker/build-push-action@v3 with: context: "{{defaultContext}}:redpanda" push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}