Skip to content

GH-749: [Languagesv2] First Page #1

GH-749: [Languagesv2] First Page

GH-749: [Languagesv2] First Page #1

on:
pull_request:
branches: [ main ]
types:
- labeled
- synchronize
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/languages-v2-web
VERSION: 0.0.1
jobs:
docker:
if: contains(env.PR_LABELS, 'build-languages-v2-web')

Check failure on line 15 in .github/workflows/docker-languages-v2-app.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker-languages-v2-app.yml

Invalid workflow file

The workflow is not valid. .github/workflows/docker-languages-v2-app.yml (Line: 15, Col: 9): Unrecognized named-value: 'env'. Located at position 10 within expression: contains(env.PR_LABELS, 'build-languages-v2-web')
runs-on: ubuntu-latest
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 ghcr.io
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 }}
labels: |
org.opencontainers.image.version=${{ env.VERSION }}
tags: |
type=raw,value=${{ env.VERSION }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./apps/languagesv2/languages-v2-web/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max