Skip to content

Docker Image CI

Docker Image CI #2

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
tags: [ 'v*.*.*' ]
workflow_run:
workflows: ["Testing RSSH"]
types: [completed]
conclusion: success
jobs:
build:

Check failure on line 13 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / Docker Image CI

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 13, Col: 3): The workflow must contain at least one job with no dependencies.
needs: e2e_tests
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
platform:
- linux/amd64
- linux/arm64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: reversessh
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
tags: reversessh/reverse_ssh:latest
push: true