mirror of
https://github.com/nosial/FileServer.git
synced 2025-06-06 13:38:36 +00:00
Convert Docker image name to lowercase in build and save steps
Some checks failed
Docker CI/CD / build (push) Has been cancelled
CI / release (push) Has been cancelled
CI / debug (push) Has been cancelled
CI / release_executable (push) Has been cancelled
CI / debug_executable (push) Has been cancelled
CI / check-phpunit (push) Has been cancelled
CI / check-phpdoc (push) Has been cancelled
CI / generate-phpdoc (push) Has been cancelled
CI / test (push) Has been cancelled
CI / release-documentation (push) Has been cancelled
CI / release-artifacts (push) Has been cancelled
Some checks failed
Docker CI/CD / build (push) Has been cancelled
CI / release (push) Has been cancelled
CI / debug (push) Has been cancelled
CI / release_executable (push) Has been cancelled
CI / debug_executable (push) Has been cancelled
CI / check-phpunit (push) Has been cancelled
CI / check-phpdoc (push) Has been cancelled
CI / generate-phpdoc (push) Has been cancelled
CI / test (push) Has been cancelled
CI / release-documentation (push) Has been cancelled
CI / release-artifacts (push) Has been cancelled
This commit is contained in:
parent
81e1eac9e4
commit
f829d643d8
1 changed files with 2 additions and 2 deletions
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
|
@ -25,12 +25,12 @@ jobs:
|
|||
|
||||
- name: Build Docker image
|
||||
run: |
|
||||
IMAGE_NAME=$(echo ${{ github.repository }} | cut -d'/' -f2)
|
||||
IMAGE_NAME=$(echo ${{ github.repository }} | cut -d'/' -f2 | tr '[:upper:]' '[:lower:]')
|
||||
docker build -t $IMAGE_NAME:${{ github.sha }} .
|
||||
|
||||
- name: Save Docker image as .tar artifact
|
||||
run: |
|
||||
IMAGE_NAME=$(echo ${{ github.repository }} | cut -d'/' -f2)
|
||||
IMAGE_NAME=$(echo ${{ github.repository }} | cut -d'/' -f2 | tr '[:upper:]' '[:lower:]')
|
||||
docker save $IMAGE_NAME:${{ github.sha }} > docker-image-${{ github.sha }}.tar
|
||||
|
||||
- name: Upload artifact
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue