Connector Build and Release (edge) #2
This file contains 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: Connector Build and Release (edge) | |
on: | |
workflow_dispatch: | |
inputs: | |
connector: | |
description: "Connector to build" | |
jobs: | |
publish_connectors: | |
name: Publish connector ${{ github.event.inputs.connector }} [manual] | |
environment: Publish Connector | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Airbyte | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: show git branch | |
run: git branch --show-current | |
- name: Set VERSION | |
run: echo "VERSION=$(git rev-parse HEAD | cut -c 1-8)" >> $GITHUB_ENV | |
- name: show VERSION | |
run: echo $VERSION | |
- name: Run Release tool | |
run: | | |
chmod +x ./release-tool.sh | |
./release-tool.sh ${{ github.event.inputs.connector }} | |
shell: bash |