Skip to content

Add inputs to allow selecting which image #179

Add inputs to allow selecting which image

Add inputs to allow selecting which image #179

Workflow file for this run

name: Build Docker Image
on:
push:
branches:
- main
- cumulusci-next**
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set environment variables
run: |
if [ "${{ github.ref_name }}" == "main" ]; then
echo "IMAGE_TAG=latest" >> $GITHUB_ENV
else
echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV
fi
- name: Build and push Docker images
uses: docker/build-push-action@v2
with:
context: .
push: ${{ github.event_name == 'push' }}
tags: |
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-chromedriver
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-playwright
ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-full-browser
outputs: |
type=image,name=ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }},target=no-browser
type=image,name=ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-chromedriver,target=chromedriver
type=image,name=ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-playwright,target=playwright
type=image,name=ghcr.io/${{ github.repository }}:${{ env.IMAGE_TAG }}-full-browser,target=full-browser