Skip to content

Commit

Permalink
Fix up permissions for release creation (#4)
Browse files Browse the repository at this point in the history
* Fix up permissions for release creation

* Fix up conditional and force docker build
  • Loading branch information
jonathanrainer authored Aug 29, 2024
1 parent 9127891 commit 3dbcaba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-push-images:
runs-on: ubuntu-latest
permissions:
contents: read
contents: write
packages: write
attestations: write
id-token: write
Expand Down Expand Up @@ -123,6 +123,6 @@ jobs:
- build-and-push-images
steps:
- run: |
exit ${{ (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped')) && 1 || 0 }}
exit ${{ (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) && 1 || 0 }}
2 changes: 1 addition & 1 deletion binary-builder-glibc/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version: 0.1.0
description: Builder image for Rust binaries that must be built with glibc 2.28
description: Builder image for Rust binaries that must be built with the correct glibc version
platforms:
- linux/arm64
- linux/amd64
2 changes: 1 addition & 1 deletion binary-builder-musl/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version: 0.1.0
description: Builder image for Rust binaries that must be built with musl
description: Builder image for Rust binaries that must be built & linked with musl
platforms:
- linux/arm64
- linux/amd64

0 comments on commit 3dbcaba

Please sign in to comment.