Skip to content

Commit

Permalink
permit build workflow to run on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
willcl-ark committed Dec 3, 2024
1 parent 378287b commit cfecb65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: github-pages
group: github-pages-build
cancel-in-progress: false
jobs:
build-jekyll:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
name: Publish to GitHub Pages
on:
push:
branches: [main, master]
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: github-pages
group: github-pages-publish
cancel-in-progress: false
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
Expand Down

0 comments on commit cfecb65

Please sign in to comment.