Skip to content

Commit

Permalink
Change secret names to non Galasa specific so relevant for forks (#214)
Browse files Browse the repository at this point in the history
## Why?

For galasa-dev/projectmanagement#2085

Using secret names that are specific to the Galasa team means that when
users fork this repository and set secrets in their forked repository,
they have to set it to the same name which being Galasa specific,
doesn't make sense. Updating the secret names to be more general so it
makes sense for forked repos. Also removing the hard coded use of the
`galasa-team` user as forks won't/shouldn't use this user.
  • Loading branch information
jadecarino authored Dec 9, 2024
2 parents 35f2f01 + 9d6e7ed commit cf49f93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ jobs:
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: galasa-team
password: ${{ secrets.GALASA_TEAM_WRITE_PACKAGES_TOKEN }}
username: ${{ secrets.WRITE_GITHUB_PACKAGES_USERNAME }}
password: ${{ secrets.WRITE_GITHUB_PACKAGES_TOKEN }}

- name: Extract metadata for Integration Tests image
id: metadata
Expand Down

0 comments on commit cf49f93

Please sign in to comment.