Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: Publish
on:
workflow_dispatch:
inputs:
projects:
projects:
description: "Publish Workspaces (to DockerHub)"
required: true
chain_type:
chain_type:
description: "Select Chain Type"
required: false
confirm:
confirm:
description: "enter \"CONFIRM\" to process"
required: true
concurrency:
Expand Down Expand Up @@ -74,13 +73,13 @@ jobs:
- name: Set up Docker Buildx
if: ${{ steps.assign-chain-type.outputs.chain_type != '' }}
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub 👤
- name: Login to DockerHub
if: ${{ steps.assign-chain-type.outputs.chain_type != '' }}
uses: docker/login-action@v2
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to Quay 👤
- name: Login to Quay
if: ${{ steps.assign-chain-type.outputs.chain_type != '' }}
uses: docker/login-action@v2
with:
Expand All @@ -99,7 +98,8 @@ jobs:
NEXT_PUBLIC_BANNERS_JSON=${{ secrets.BANNERS_JSON }}
NEXT_PUBLIC_COINZILLA_ZONE=${{ secrets.COINZILLA_ZONE }}
NEXT_PUBLIC_SENTRY_DSN=${{ secrets.SENTRY_DSN }}
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
secrets: |
sentry_auth_token=${{ secrets.SENTRY_AUTH_TOKEN }}
target: runner
tags: |
forbole/big-dipper-2.0-cosmos:monorepo-${{ matrix.project }}-${{ steps.assign-chain-type.outputs.chain_type }}-${{ steps.assign-chain-type.outputs.sha_short }}
Expand Down