Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
117503445 committed Sep 20, 2023
2 parents e734b2a + 2530281 commit 2f9aac9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flow-pdf-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- run: cd src/be-fc && ../../script/write_git_info.sh
- run: cd src/flow_pdf && ../../script/write_git_info.sh
env:
SHA: ${{ github.sha }}

Expand Down
5 changes: 4 additions & 1 deletion src/flow_pdf/flow_pdf/fc.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
import shutil

logger = create_main_logger()
logger.info(f"version: {version}")
if version == "dev":
logger.warning("dev mode, version is not set")
else:
logger.info(f"version: {version}")

eventsStr = os.getenv("FC_CUSTOM_CONTAINER_EVENT")

Expand Down

0 comments on commit 2f9aac9

Please sign in to comment.