From 0345f35980977c14a557bad755252fd1e6e47baf Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Thu, 12 May 2022 15:20:10 +0300 Subject: [PATCH] Unify style --- .github/workflows/docker.yml | 8 ++++---- .github/workflows/hub-overview.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 26a0592b..97e61501 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -97,7 +97,7 @@ jobs: - name: Checkout Wiki Repo 📃 uses: actions/checkout@v3 with: - repository: ${{github.repository}}.wiki + repository: ${{ github.repository }}.wiki path: wiki/ - name: Create tags and manifest 🏷 @@ -107,15 +107,15 @@ jobs: if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.event_name == 'schedule' uses: stefanzweifel/git-auto-commit-action@49620cd3ed21ee620a48530e81dba0d139c9cb80 # dependabot updates to latest release with: - commit_message: "Automated wiki publish for ${{github.sha}}" + commit_message: "Automated wiki publish for ${{ github.sha }}" repository: wiki/ - name: Login to Docker Hub 🔐 if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.event_name == 'schedule' uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b # dependabot updates to latest release with: - username: ${{secrets.DOCKERHUB_USERNAME}} - password: ${{secrets.DOCKERHUB_TOKEN}} + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Push Images to Docker Hub 📤 if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.event_name == 'schedule' diff --git a/.github/workflows/hub-overview.yml b/.github/workflows/hub-overview.yml index f590f63e..63610fbd 100644 --- a/.github/workflows/hub-overview.yml +++ b/.github/workflows/hub-overview.yml @@ -34,8 +34,8 @@ jobs: - name: push README to Dockerhub for base-notebook 🐳 uses: christian-korneck/update-container-description-action@d36005551adeaba9698d8d67a296bd16fa91f8e8 # dependabot updates to latest release env: - DOCKER_USER: ${{secrets.DOCKERHUB_USERNAME}} - DOCKER_PASS: ${{secrets.DOCKERHUB_TOKEN}} + DOCKER_USER: ${{ secrets.DOCKERHUB_USERNAME }} + DOCKER_PASS: ${{ secrets.DOCKERHUB_TOKEN }} with: destination_container_repo: jupyter/base-notebook provider: dockerhub