Skip to content

LAST time, cube5, /dev/urandom IS NOT a variable name generator... #12

LAST time, cube5, /dev/urandom IS NOT a variable name generator...

LAST time, cube5, /dev/urandom IS NOT a variable name generator... #12

name: emptydirclone-image-build-push
on:
workflow_dispatch:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
branches:
- 'main'
permissions:
packages: write
jobs:
image-build-push:
runs-on: ubuntu-latest
steps:

Check failure on line 20 in .github/workflows/image-build-push.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/image-build-push.yaml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "$GITHUB_CONTEXT"
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/mbtamuli/csi-quickstart/emptydirclone
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:emptyDirClone"
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}