Skip to content

jitsi-component-selector, chore: add context var in workflow #3

jitsi-component-selector, chore: add context var in workflow

jitsi-component-selector, chore: add context var in workflow #3

name: jitsi-component-selector
on:
push:
branches:
- "main"
paths:
- "jitsi-component-selector/Dockerfile"
- ".github/workflows/jitsi-component-selector.yml"
env:
CONTEXT: jitsi-component-selector
REGISTRY: ghcr.io
IMAGE_NAME: "${{ github.repository }}/${{ CONTEXT }}"

Check failure on line 14 in .github/workflows/jitsi-component-selector.yml

View workflow run for this annotation

GitHub Actions / jitsi-component-selector

Invalid workflow file

The workflow is not valid. .github/workflows/jitsi-component-selector.yml (Line: 14, Col: 15): Unrecognized named-value: 'CONTEXT'. Located at position 1 within expression: CONTEXT
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Custom metadata
run: |
echo "BUILD_DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
echo ${{ env.REGISTRY }}
echo ${{ env.IMAGE_NAME }}
echo ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Metadata
uses: docker/metadata-action@v5
id: meta
with:
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest
type=raw,value=v${{ env.BUILD_DATE }}
- name: Login
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
#- name: Build and push
# uses: docker/build-push-action@v5
# with:
# context: "{{defaultContext}}:${{ env.CONTEXT }}"
# push: true
# tags: ${{ steps.meta.outputs.tags }}
# labels: ${{ steps.meta.outputs.labels }}