Skip to content

image-publisher

image-publisher #24

Workflow file for this run

name: image-publisher
on:
workflow_dispatch:
inputs:
REGISTRY_NAMESPACE:
required: true
default: ocs-dev
IMAGE_TAG:
required: true
default: latest
jobs:
docker-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Build and push docker images
env:
REGISTRY_NAMESPACE: ${{ github.event.inputs.REGISTRY_NAMESPACE }}
IMAGE_TAG: ${{ github.ref_name }}-${{ github.sha::7 }}

Check failure on line 34 in .github/workflows/docker-push.yaml

View workflow run for this annotation

GitHub Actions / image-publisher

Invalid workflow file

The workflow is not valid. .github/workflows/docker-push.yaml (Line: 34, Col: 20): Unexpected symbol: 'sha::7'. Located at position 8 within expression: github.sha::7
run: |
make docker-build docker-push
make bundle-build bundle-push
make catalog-build catalog-push
make catalog-deps-build catalog-deps-push