Skip to content

add connector definition pipeline #6

add connector definition pipeline

add connector definition pipeline #6

Workflow file for this run

name: Release container definition
on:
push:
# tags:
# - "*"
jobs:
tests:
uses: ./.github/workflows/test.yaml
release-image:
name: Release ndc-rest image
runs-on: ubuntu-20.04
needs: [tests]
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ghcr.io/hasura
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get version from tag
id: get-version
run: |
echo "tagged_version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
shell: bash
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ghcr.io/hasura/ndc-rest:${{ steps.get-version.outputs.tagged_version }}
- name: Build connector definition
run: |
export VERSION=$GITHUB_REF_NAME
./scripts/build-manifest.sh
- name: create a draft release
uses: ncipollo/release-action@v1
with:
draft: true
tag: ${{ steps.get-version.outputs.tagged_version }}
artifacts: release/*