Skip to content

Commit

Permalink
hello
Browse files Browse the repository at this point in the history
  • Loading branch information
rjosephwright committed May 16, 2023
1 parent 0658806 commit 7218f4c
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
push:
branches:
- master
- hugo

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 7218f4c

Please sign in to comment.