Skip to content

Update build-bundle-image.yaml #67

Update build-bundle-image.yaml

Update build-bundle-image.yaml #67

name: Deploy Bundle Images to GHCR
env:
DOTNET_VERSION: '6.0.x'
on:
push:
branches:
- main
workflow_dispatch:
jobs:
push-bundle-image:
runs-on: ubuntu-latest
defaults:
run:
working-directory: '.'
env:
IMAGE_TAG_BASE : ghcr.io/${{ github.repository }}
BUNDLE_IMG: ${{IMAGE_TAG_BASE}}-bundle:latest

Check failure on line 17 in .github/workflows/build-bundle-image.yaml

View workflow run for this annotation

GitHub Actions / Deploy Bundle Images to GHCR

Invalid workflow file

The workflow is not valid. .github/workflows/build-bundle-image.yaml (Line: 17, Col: 24): Unrecognized named-value: 'IMAGE_TAG_BASE'. Located at position 1 within expression: IMAGE_TAG_BASE
VERSION: latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Bundle Image'
run: |
make bundle
make bundle-build
make bundle-push