Skip to content

Set PATH variable correctly to work with drush 12 #21

Set PATH variable correctly to work with drush 12

Set PATH variable correctly to work with drush 12 #21

name: Build and publish Docker image
on:
push:
branches:
- main
- 'release/**'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
# pull_request:
# branches: [ "main" ]
jobs:
push_to_registry:
name: Build and push Docker image to Docker Hub by @${{ github.actor }}
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: unicdocker/drupal-php
tags: |
type=schedule
type=ref,event=branch,enable=${{ github.ref != 'refs/heads/main' }}
type=ref,event=tag
type=ref,event=pr
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}