From 7218f4ca924a2cd2d98d185568b21f0580676cf3 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 | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml index 6ec0a2e..4ad683c 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,16 @@ defaults: shell: bash jobs: + hello: + runs-on: ubuntu-latest + needs: build + steps: + - name: heyo + env: + blob: ${{ toJson(github) }} + run: | + echo ${blob} + # Build job build: runs-on: ubuntu-latest @@ -77,8 +88,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 }}