From 07fefa33a90916eba0b03b5c7f4558a059e5c225 Mon Sep 17 00:00:00 2001 From: Tommy Date: Sun, 17 Jul 2022 20:03:35 -0400 Subject: [PATCH] Minor update Signed-off-by: Tommy --- .github/workflows/firebase-hosting-merge.yml | 6 ++++-- .github/workflows/firebase-hosting-pull-request.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml index d0899bc..0300703 100644 --- a/.github/workflows/firebase-hosting-merge.yml +++ b/.github/workflows/firebase-hosting-merge.yml @@ -10,7 +10,8 @@ jobs: build_and_deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - name: Hugo setup uses: peaceiris/actions-hugo@v2 @@ -20,7 +21,8 @@ jobs: - name: Build run: hugo --minify - - uses: FirebaseExtended/action-hosting-deploy@v0 + - name: Deploy + uses: FirebaseExtended/action-hosting-deploy@v0 with: repoToken: '${{ secrets.GITHUB_TOKEN }}' firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_PRIVSEC_356523 }}' diff --git a/.github/workflows/firebase-hosting-pull-request.yml b/.github/workflows/firebase-hosting-pull-request.yml index d52410d..f15fa53 100644 --- a/.github/workflows/firebase-hosting-pull-request.yml +++ b/.github/workflows/firebase-hosting-pull-request.yml @@ -8,7 +8,8 @@ jobs: if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - name: Hugo setup uses: peaceiris/actions-hugo@v2 @@ -18,7 +19,8 @@ jobs: - name: Build run: hugo --minify - - uses: FirebaseExtended/action-hosting-deploy@v0 + - name: Deploy + uses: FirebaseExtended/action-hosting-deploy@v0 with: repoToken: '${{ secrets.GITHUB_TOKEN }}' firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_PRIVSEC_356523 }}'