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 }}