File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- name : Docker Image CI
1
+ name : Docker Image Build CI
2
2
3
3
on :
4
4
push :
@@ -13,16 +13,16 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
- name : Build the Ubuntu Docker image
18
- run : docker build . --file Dockerfile --tag backup-utils:${GITHUB_RUN_ID}
18
+ run : docker build . --file Dockerfile --tag backup-utils:" ${GITHUB_RUN_ID}"
19
19
- name : Build the Alpine Docker image
20
- run : docker build . --file Dockerfile.alpine --tag backup-utils-alpine:${GITHUB_RUN_ID}
20
+ run : docker build . --file Dockerfile.alpine --tag backup-utils-alpine:" ${GITHUB_RUN_ID}"
21
21
- name : Run tests in Ubuntu Docker image
22
22
run : |
23
- docker run backup-utils:${GITHUB_RUN_ID} ghe-backup --version
24
- docker run backup-utils:${GITHUB_RUN_ID} rsync --version
23
+ docker run backup-utils:" ${GITHUB_RUN_ID}" ghe-backup --version
24
+ docker run backup-utils:" ${GITHUB_RUN_ID}" rsync --version
25
25
- name : Run tests in Alpine Docker image
26
26
run : |
27
- docker run backup-utils-alpine:${GITHUB_RUN_ID} ghe-backup --version
28
- docker run backup-utils-alpine:${GITHUB_RUN_ID} rsync --version
27
+ docker run backup-utils-alpine:" ${GITHUB_RUN_ID}" ghe-backup --version
28
+ docker run backup-utils-alpine:" ${GITHUB_RUN_ID}" rsync --version
You can’t perform that action at this time.
0 commit comments