We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a0ffccc + 64a8385 commit 0e69926Copy full SHA for 0e69926
1 file changed
.github/workflows/docker-image.yml
@@ -13,9 +13,21 @@ env:
13
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
14
15
jobs:
16
+ shellcheck:
17
+ name: Shellcheck
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v3
21
+ - name: Run ShellCheck
22
+ uses: ludeeus/action-shellcheck@master
23
+ with:
24
+ ignore_paths: >-
25
+ sources
26
+
27
push_to_registry:
28
if: github.event_name != 'pull_request'
29
name: LAMP Docker Image to Hub
30
+ needs: shellcheck
31
runs-on: ubuntu-latest
32
steps:
33
- name: Checkout repository
0 commit comments