Skip to content

Commit

Permalink
Attempt to force charset
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Oct 22, 2024
1 parent c87e81c commit d987b0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/NightlyBMDB_CLI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Load Downloaded Docker Image
run: docker load --input /tmp/docker/$(ls /tmp/docker)

# Get files from BMDB
# Get files from VCDB
- name: Checkout Input Files
uses: actions/checkout@v4
with:
Expand All @@ -161,7 +161,7 @@ jobs:
# Do the execution
- name: Begin Execution
#$(docker image ls | grep "<none>" | awk '{print $3;}') to get image id
run: docker run -v $GITHUB_WORKSPACE/set_${{ matrix.sets }}:/root $(docker image ls | grep "<none>" | awk '{print $3;}') execute -d -i "/root" -o "/root/output" --writeLogFiles # grabs image and runs
run: docker run --mount type=volume,src=$GITHUB_WORKSPACE/set_${{ matrix.sets }},dst=/root,volume-driver=local,volume-opt=o=iocharset=utf8 $(docker image ls | grep "<none>" | awk '{print $3;}') execute -d -i "/root" -o "/root/output" --writeLogFiles # grabs image and runs

- name: Check For Success
run: |
Expand Down

0 comments on commit d987b0c

Please sign in to comment.