We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7727eb2 commit 6532671Copy full SHA for 6532671
1 file changed
.github/workflows/test-install.yml
@@ -34,7 +34,6 @@ jobs:
34
35
- name: Set up docker container for ${{ matrix.distro }}
36
run: |
37
- SAFE_TAG="${{ matrix.distro//[:\/]/-}}"
38
echo "FROM ${{ matrix.distro }}" > Dockerfile
39
echo "COPY install.sh /install.sh" >> Dockerfile
40
echo 'RUN chmod +x /install.sh' >> Dockerfile
@@ -55,10 +54,10 @@ jobs:
55
54
56
- name: Build the test container
57
58
+ SAFE_TAG=$(echo "${{ matrix.distro }}" | tr ':/' '-')
59
docker build -t installsh-test:$SAFE_TAG .
60
61
- name: Run install.sh in container
62
63
64
docker run --rm installsh-test:$SAFE_TAG bash -c "cd /home/testuser && bash /install.sh"
0 commit comments