Skip to content

Update README.md

Update README.md #32

Workflow file for this run

name: Docker Image TQ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
# - name: Build the Docker image
# run: docker build . --file Dockerfile --tag tquinnelly/clamav-alpine:latest
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images:
- ${{ secrets.DOCKER_USERNAME }}/clamav-alpine:latest

Check failure on line 32 in .github/workflows/docker-tqci.yml

View workflow run for this annotation

GitHub Actions / Docker Image TQ CI

Invalid workflow file

The workflow is not valid. .github/workflows/docker-tqci.yml (Line: 32, Col: 11): A sequence was not expected
- ${{ secrets.DOCKER_USERNAME }}/clamav-alpine:edge
- name: Push it - Latest
uses: docker/build-push-action@v5.2.0
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/clamav-alpine:latest
- name: Push it - Edge
uses: docker/build-push-action@v5.2.0
with:
context: .
file: ./Dockerfile-edge.dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/clamav-alpine:edge