Skip to content

Scope3: Add rtd targeting in seatbid #131

Scope3: Add rtd targeting in seatbid

Scope3: Add rtd targeting in seatbid #131

Workflow file for this run

name: PublishOnly

Check failure on line 1 in .github/workflows/publishonly.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publishonly.yml

Invalid workflow file

(Line: 11, Col: 3): Unexpected value 'publish-docker-image', (Line: 19, Col: 21): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.DOCKERHUB_USER, (Line: 20, Col: 21): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.DOCKERHUB_PASSWORD, (Line: 23, Col: 14): Unrecognized named-value: 'inputs'. Located at position 1 within expression: inputs.imageToPublish, (Line: 1, Col: 1): Required property is missing: jobs
on:
workflow_dispatch:
inputs:
imageToPublish:
type: string
required: true
description: 'Already built docker image to publish to docker hub'
publish-docker-image:
name: Publish docker image
runs-on: ubuntu-latest
steps:
- name: Login to docker Hub
id: login
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Publish to docker Hub
if: steps.login.outcome == 'success'
run: |
docker push docker.io/prebid/prebid-server:${{ inputs.imageToPublish }}