File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change 16
16
PYFLUENT_WATCHDOG_DEBUG : " OFF"
17
17
PYFLUENT_HIDE_LOG_SECRETS : 1
18
18
19
- FLUENT_DOCKER_IMAGE : " pyfluent:v25.1.0"
19
+ DOCKER_CONTAINER_REGISTRY : ' ghcr.io'
20
+ DOCKER_IMAGE_FLUENT : " ansys/pyfluent"
21
+ DOCKER_IMAGE_TAG : " v25.1.0"
20
22
21
23
concurrency :
22
24
group : ${{ github.workflow }}-${{ github.ref }}
@@ -118,21 +120,23 @@ jobs:
118
120
needs : doc-style
119
121
runs-on : ubuntu-latest
120
122
env :
121
- DOC_DEPLOYMENT_IMAGE_TAG : v25.2.0
122
123
PYFLUENT_CONTAINER_MOUNT_SOURCE : " /home/ansys/Downloads/ansys_fluent_core_examples"
123
124
steps :
124
125
125
126
- name : " Login to GitHub Container Registry"
126
127
uses : docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
127
128
with :
128
- registry : ghcr.io
129
- username : ansys-bot
129
+ registry : ${{ env.DOCKER_CONTAINER_REGISTRY }}
130
+ username : ${{ github.actor }}
130
131
password : ${{ secrets.GITHUB_TOKEN }}
131
132
132
- - name : " Pull ${{ env.FLUENT_DOCKER_IMAGE }}"
133
- if : steps.cache-api-code.outputs.cache-hit != 'true'
133
+ - name : " Pull ${{ env.DOCKER_IMAGE_FLUENT }}:${{ env.DOCKER_IMAGE_TAG }}"
134
134
run : |
135
- docker pull ${{ env.FLUENT_DOCKER_IMAGE }}
135
+ docker pull ${{ env.DOCKER_CONTAINER_REGISTRY }}/${{ env.DOCKER_IMAGE_FLUENT }}:${{ env.DOCKER_IMAGE_TAG }}
136
+
137
+ - name : " Run container"
138
+ run : |
139
+ docker run --detach --name fluent -e ANSYSLMD_LICENSE_FILE=${{ env.ANSYSLMD_LICENSE_FILE }}
136
140
137
141
- name : " Build documentation"
138
142
uses : ansys/actions/doc-build@v10
You can’t perform that action at this time.
0 commit comments