Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions .github/workflows/docker-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ on:

env:
REGISTRY: ghcr.io
GAS_STATION_IMAGE_NAME: ${{ github.repository }}/gas-station
STREAMR_DEST_IMAGE_NAME: ${{ github.repository }}/streamr-destination
GAS_STATION_IMAGE_NAME: ${{ github.repository }}/airbyte-gas-station
STREAMR_DEST_IMAGE_NAME: ${{ github.repository }}/airbyte-streamr-destination

jobs:
build-and-push:
Expand All @@ -26,6 +26,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
Expand Down Expand Up @@ -61,18 +66,20 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
build-args: |
path=sources/gas-station
push: true
build-args: path=sources/gas-station
tags: ${{ steps.meta-gas.outputs.tags }}
labels: ${{ steps.meta-gas.outputs.labels }}
cache-from: type=gha,scope=gas-station
cache-to: type=gha,mode=max,scope=gas-station

- name: Build and push Streamr Destination image
uses: docker/build-push-action@v5
with:
context: .
build-args: |
path=destinations/streamr
push: true
build-args: path=destinations/streamr-destination
tags: ${{ steps.meta-streamr.outputs.tags }}
labels: ${{ steps.meta-streamr.outputs.labels }}
labels: ${{ steps.meta-streamr.outputs.labels }}
cache-from: type=gha,scope=streamr-destination
cache-to: type=gha,mode=max,scope=streamr-destination
2 changes: 1 addition & 1 deletion destinations/streamr-destination/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"main": "./lib.js",
"dependencies": {
"@streamr/sdk": "^100.1.2",
"@streamr/sdk": "^101.1.2",
"commander": "^11.1.0",
"faros-feeds-sdk": "^0.9.0",
"git-url-parse": "^11.6.0",
Expand Down