Skip to content

Commit

Permalink
Replace secrets with the new ones (#1564)
Browse files Browse the repository at this point in the history
In the monorepo, secrets used in the various previous repos have been
renamed into:
- `CUMULUS_DOCKERHUB_USERNAME`
- `CUMULUS_DOCKERHUB_TOKEN`
- `POLKADOT_DOCKERHUB_USERNAME`
- `POLKADOT_DOCKERHUB_TOKEN`

This PR makes those changes and remove one of the GHW that has now been
updated for the monorepo.
  • Loading branch information
chevdor authored Sep 18, 2023
1 parent e05d369 commit 519a0f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 48 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-50_publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ jobs:
- name: Login to Dockerhub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
username: ${{ secrets.CUMULUS_DOCKERHUB_USERNAME }}
password: ${{ secrets.CUMULUS_DOCKERHUB_TOKEN }}

- name: Push Container image for ${{ env.BINARY }}
id: docker_push
Expand Down Expand Up @@ -255,8 +255,8 @@ jobs:
- name: Login to Docker Hub
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
username: ${{ secrets.POLKADOT_DOCKERHUB_USERNAME }}
password: ${{ secrets.POLKADOT_DOCKERHUB_TOKEN }}

- name: Fetch values
id: fetch-data
Expand Down
44 changes: 0 additions & 44 deletions polkadot/.github/workflows/release-50_publish-docker-release.yml

This file was deleted.

0 comments on commit 519a0f0

Please sign in to comment.