Scope3: Add rtd targeting in seatbid #131
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PublishOnly | ||
|
Check failure on line 1 in .github/workflows/publishonly.yml
|
||
| 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 }} | ||