diff options
author | 2020-11-18 11:15:20 +0100 | |
---|---|---|
committer | 2020-11-18 11:15:20 +0100 | |
commit | f3ba46290e8900781e727fbe4426b1a2cfa9ea1c (patch) | |
tree | c106ecce854f9842e6f0e1ce06ac6c41df43f870 | |
parent | Clean up workflow file (diff) |
Clean up workflow file
-rw-r--r-- | .github/workflows/lint-test.yaml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 506467e..390763e 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -12,10 +12,8 @@ jobs: env: # Determine whether or not we should build the # final production image and push it to GHCR. - production_build: ${{ - github.event_name != 'pull_request' && - github.ref == 'refs/heads/master' - }} + production_build: ${{ github.event_name != 'pull_request' && \ + github.ref == 'refs/heads/master' }} steps: # Create a short SHA-tag to tag built images |