Skip to content

Commit a10c51f

Browse files
authored
ci: Include require environment variables in release step (#6493)
1 parent eecc44b commit a10c51f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Build
3333
env:
34-
ORG_GRADLE_PROJECT_githubPackagesUsername: ${{ env.GITHUB_ACTOR }}
34+
ORG_GRADLE_PROJECT_githubPackagesUsername: ${{ github.actor }}
3535
ORG_GRADLE_PROJECT_githubPackagesPassword: ${{ secrets.GITHUB_TOKEN }}
3636
run: ./gradlew :patches:buildAndroid clean
3737

@@ -56,6 +56,8 @@ jobs:
5656
id: release
5757
env:
5858
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59+
ORG_GRADLE_PROJECT_githubPackagesUsername: ${{ github.actor }}
60+
ORG_GRADLE_PROJECT_githubPackagesPassword: ${{ secrets.GITHUB_TOKEN }}
5961

6062
- name: Attest
6163
if: steps.release.outputs.new_release_published == 'true'

0 commit comments

Comments
 (0)