Name the volume with existing variables
Jekyll / test-ci-actions (push) Failing after 17s
Details
Jekyll / test-ci-actions (push) Failing after 17s
Details
Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
This commit is contained in:
parent
2cdbfd47a9
commit
b15883c239
|
@ -45,13 +45,12 @@ jobs:
|
|||
- name: Verify Jekyll container
|
||||
id: verify_image
|
||||
run: |
|
||||
VOL=$(docker volume ls | grep -Po "GITEA-ACTIONS-TASK-[0-9]+_WORKFLOW-Jekyll_JOB-test-ci-actions$")
|
||||
docker-compose run --rm --entrypoint bash -v "${VOL}:/home/ubuntu/workspace" jekyll -c "whoami; pwd; ls -lA ."
|
||||
docker volume ls ${JOB_CONTAINER_NAME}
|
||||
docker-compose run --rm --entrypoint bash -v "${JOB_CONTAINER_NAME}:/home/ubuntu/workspace" jekyll -c "whoami; pwd; ls -lA ."
|
||||
- name: Build Jekyll site
|
||||
id: build_site
|
||||
run: |
|
||||
VOL=$(docker volume ls | grep -Po "GITEA-ACTIONS-TASK-[0-9]+_WORKFLOW-Jekyll_JOB-test-ci-actions$")
|
||||
docker-compose run --rm -v "${VOL}:/home/ubuntu/workspace" jekyll build --verbose
|
||||
docker-compose run --rm -v "${JOB_CONTAINER_NAME}:/home/ubuntu/workspace" jekyll build --verbose
|
||||
- name: Upload Jekyll site
|
||||
id: upload_site
|
||||
uses: "actions/upload-artifact@v3"
|
||||
|
|
Loading…
Reference in New Issue