Skip to content

Commit b95471b

Browse files
Add GITHUB_TOKEN to releases job (#5)
* Release permissions appear to not have been set correctly This corrects that * Bump for CI changes
1 parent 3dbcaba commit b95471b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Diff for: .github/workflows/docker_publish.yml

+2
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ jobs:
112112
- name: Create GitHub Release
113113
if: ${{ github.event_name != 'pull_request' }}
114114
uses: comnoco/create-release-action@v2.0.5
115+
env:
116+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
115117
with:
116118
tag_name: ${{ matrix.changed_dir }}/v${{ steps.calculate_version.outputs.version }}
117119
release_name: ${{ matrix.changed_dir }} - v${{ steps.calculate_version.outputs.version }}

Diff for: binary-builder-glibc/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.1.0
1+
version: 0.1.1
22
description: Builder image for Rust binaries that must be built with the correct glibc version
33
platforms:
44
- linux/arm64

Diff for: binary-builder-musl/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.1.0
1+
version: 0.1.1
22
description: Builder image for Rust binaries that must be built & linked with musl
33
platforms:
44
- linux/arm64

0 commit comments

Comments
 (0)