update to fix timestamp and bigint/hugeint filters #63
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: "ndc-duckduckapi connector" | |
on: | |
pull_request: | |
branches: | |
- main | |
- test-ci/** | |
push: | |
branches: | |
- "main" | |
- test-ci/** | |
tags: | |
- v** | |
env: | |
DOCKER_REGISTRY: ghcr.io | |
DOCKER_IMAGE_NAME: hasura/ndc-duckduckapi | |
jobs: | |
build-npm: | |
name: Build ndc-duckduckapi npm package | |
defaults: | |
run: | |
working-directory: ./ndc-duckduckapi | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
registry-url: https://registry.npmjs.org | |
cache: npm | |
cache-dependency-path: ./ndc-duckduckapi/package-lock.json | |
- run: npm ci | |
- run: npm run build | |
- run: npm test | |
publish-npm: | |
name: Publish ndc-duckduckapi to npm | |
defaults: | |
run: | |
working-directory: ./ndc-duckduckapi | |
needs: build-npm | |
runs-on: ubuntu-latest | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
registry-url: https://registry.npmjs.org | |
cache: npm | |
cache-dependency-path: ./ndc-duckduckapi/package-lock.json | |
- run: | | |
PACKAGE_VERSION=`npm version | sed -rn "2 s/.*: '([^']*)'.*/\1/g; 2 p"` | |
TAG=`echo "$GITHUB_REF"| sed -r "s#.*/##g"` | |
echo '$TAG' = "$TAG" | |
echo '$GITHUB_REF' = "$GITHUB_REF" | |
echo '$PACKAGE_VERSION' = "$PACKAGE_VERSION" | |
if [ "$TAG" = "v$PACKAGE_VERSION" ] | |
then | |
echo "Success! Versions match." | |
else | |
echo "Package version (v$PACKAGE_VERSION) must match tag (GITHUB_REF: $GITHUB_REF) in order to publish" 1>&2 | |
exit 1 | |
fi | |
- run: npm ci | |
- run: npm run build | |
- run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
docker: | |
name: Build base docker image | |
runs-on: ubuntu-latest | |
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 GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.DOCKER_REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: docker-metadata | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }} | |
- uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
platforms: linux/amd64,linux/arm64 | |
tags: ${{ steps.docker-metadata.outputs.tags }} | |
labels: ${{ steps.docker-metadata.outputs.labels }} | |
release-connector: | |
name: Release connector | |
defaults: | |
run: | |
working-directory: ./connector-definition | |
runs-on: ubuntu-latest | |
needs: | |
- publish-npm | |
- docker | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
registry-url: https://registry.npmjs.org | |
cache: npm | |
cache-dependency-path: ./ndc-duckduckapi/package-lock.json | |
- name: Build connector definition | |
run: make build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: connector-definition.tgz | |
path: ./connector-definition/dist/connector-definition.tgz | |
compression-level: 0 # Already compressed | |
- name: Get version from tag | |
id: get-version | |
run: | | |
echo "tagged_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT | |
shell: bash | |
- uses: softprops/action-gh-release@v1 | |
with: | |
draft: false | |
tag_name: v${{ steps.get-version.outputs.tagged_version }} | |
body: ${{ steps.changelog-reader.outputs.changes }} | |
files: | | |
./connector-definition/dist/connector-definition.tgz | |
fail_on_unmatched_files: true |