Skip to content

Commit

Permalink
fix: build command for standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
kkopanidis committed Jan 26, 2024
1 parent 0accd64 commit bedf994
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/standalone.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build conduit base
run: |
DEV=TRUE make all
docker build --no-cache -t conduit-base:latest -f ./Dockerfile .
- name: Build standalone
run: |
docker build -t ghcr.io/conduitplatform/conduit-standalone:dev -f ./standalone.Dockerfile .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standalone.production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF#refs/*/} | sed 's/^v//')" >> $GITHUB_ENV
- name: Build conduit base
run: |
DEV=TRUE make all
docker build --no-cache -t conduit-base:latest -f ./Dockerfile .
- name: Build standalone
run: |
docker build -t ghcr.io/conduitplatform/conduit-standalone:latest -f ./standalone.Dockerfile .
Expand Down

0 comments on commit bedf994

Please sign in to comment.