diff --git a/.github/workflows/build-and-release-runners.yml b/.github/workflows/build-and-release-runners.yml index b6a8cb3d..ff41a062 100644 --- a/.github/workflows/build-and-release-runners.yml +++ b/.github/workflows/build-and-release-runners.yml @@ -37,7 +37,7 @@ jobs: env: RUNNER_VERSION: 2.278.0 DOCKER_VERSION: 19.03.12 - DOCKERHUB_USERNAME: ${{ github.repository_owner }} + DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USER }} steps: - name: Set outputs id: vars @@ -58,7 +58,7 @@ jobs: uses: docker/login-action@v1 if: ${{ github.event_name == 'push' || github.event_name == 'release' }} with: - username: ${{ github.repository_owner }} + username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_ACCESS_TOKEN }} - name: Build and Push Versioned Tags @@ -88,7 +88,7 @@ jobs: env: RUNNER_VERSION: 2.277.1 DOCKER_VERSION: 19.03.12 - DOCKERHUB_USERNAME: ${{ github.repository_owner }} + DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USER }} steps: - name: Checkout @@ -106,7 +106,7 @@ jobs: uses: docker/login-action@v1 if: ${{ github.event_name == 'push' || github.event_name == 'release' }} with: - username: ${{ github.repository_owner }} + username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_ACCESS_TOKEN }} - name: Build and Push Latest Tag diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fbdff7ea..c5c4d409 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest name: Release env: - DOCKERHUB_USERNAME: ${{ github.repository_owner }} + DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USER }} steps: - name: Set outputs id: vars @@ -47,7 +47,7 @@ jobs: - name: Login to DockerHub uses: docker/login-action@v1 with: - username: ${{ github.repository_owner }} + username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_ACCESS_TOKEN }} - name: Build and Push diff --git a/.github/workflows/wip.yml b/.github/workflows/wip.yml index ad754b3f..b8b8fa19 100644 --- a/.github/workflows/wip.yml +++ b/.github/workflows/wip.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest name: release-latest env: - DOCKERHUB_USERNAME: ${{ github.repository_owner }} + DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USER }} steps: - name: Checkout uses: actions/checkout@v2 @@ -29,7 +29,7 @@ jobs: - name: Login to DockerHub uses: docker/login-action@v1 with: - username: ${{ github.repository_owner }} + username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_ACCESS_TOKEN }} # Considered unstable builds