Skip to content

Commit

Permalink
CI: Adding docker image build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsanderp committed Dec 28, 2022
1 parent 210e79e commit e33534d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deploy_connector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }} .

0 comments on commit e33534d

Please sign in to comment.