Skip to content

Commit

Permalink
Initial commit of source-ballchasing connector
Browse files Browse the repository at this point in the history
Adds an initial implementation that pulls from the ballchasing API.
  • Loading branch information
psFried committed Sep 21, 2023
1 parent e911590 commit 184b521
Show file tree
Hide file tree
Showing 13 changed files with 3,197 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build and push Docker image

on: push

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
#
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
# push only if building the main branch
push: ${{ github.ref == 'refs/heads/main' }}
tags: ghcr.io/estuary/source-ballchasing:dev

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 184b521

Please sign in to comment.