diff --git a/.github/workflows/deploy_connector.yaml b/.github/workflows/deploy_connector.yaml index b96bc8a..6ace1c2 100644 --- a/.github/workflows/deploy_connector.yaml +++ b/.github/workflows/deploy_connector.yaml @@ -27,3 +27,17 @@ jobs: ] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + deploy_connector: + if: ${{ needs.semantic_release.outputs.new_release_published == 'true' }} + needs: [semantic_release] + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Build Docker Image + run: | + echo ${{ needs.semantic_release.outputs.new_release_version }} + docker build -t alexsanderp/hurb-airbyte-connector-destination-websocket:${{ needs.semantic_release.outputs.new_release_version }} .