Skip to content

Commit

Permalink
Merge pull request #29 from uswitch/fix_workflow
Browse files Browse the repository at this point in the history
Fix artifact permissions
  • Loading branch information
MatteoMori8 authored Jul 3, 2024
2 parents c840fe3 + 3d23ddd commit f06ac8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
uses: docker/metadata-action@v5
with:
images: quay.io/uswitch/klint
tags: type=sha,prefix=,format=long
tags: |
type=semver,pattern={{raw}}
type=sha,prefix=,format=long
- uses: docker/build-push-action@v6
with:
context: .
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ FROM scratch

COPY --from=base /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/

ADD bin/klint /klint
ADD --chmod=755 bin/klint /klint

ENTRYPOINT ["/klint"]
ENTRYPOINT ["/klint"]

0 comments on commit f06ac8b

Please sign in to comment.