From 3006ff54b8de0dc7a702ce2897197475e2b194f0 Mon Sep 17 00:00:00 2001 From: Joseph Wright Date: Mon, 15 May 2023 23:08:17 -0700 Subject: [PATCH] hello --- .github/workflows/hugo.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml index 6ec0a2e..522f800 100644 --- a/.github/workflows/hugo.yaml +++ b/.github/workflows/hugo.yaml @@ -14,6 +14,7 @@ on: push: branches: - master + - hugo # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -36,6 +37,15 @@ defaults: shell: bash jobs: + hello: + runs-on: ubuntu-latest + environment: + blob: ${{ toJson(github) }} + needs: build + steps: + - run: | + echo ${blob} + # Build job build: runs-on: ubuntu-latest @@ -77,8 +87,8 @@ jobs: # Deployment job deploy: - if: | - github.event.push.ref == 'refs/heads/master' + # if: | + # github.event.push.ref == 'refs/heads/master' environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }}