Skip to content

Commit

Permalink
devel branch to work for GHAs
Browse files Browse the repository at this point in the history
  • Loading branch information
federicomarini committed Mar 27, 2024
1 parent f6de93e commit dd7add3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
branches: [devel]
pull_request:
branches: [main, master]
branches: [devel]
workflow_dispatch:

name: pkgdown
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
shell: Rscript {0}

- name: Deploy to GitHub pages 🚀
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/devel'
uses: JamesIves/[email protected]
with:
clean: false
Expand All @@ -50,7 +50,7 @@ jobs:

- name: Deploy to Netlify
uses: nwtgck/[email protected]
if: github.ref != 'refs/heads/main' && github.ref != 'refs/heads/master'
if: github.ref != 'refs/heads/main' && github.ref != 'refs/heads/devel'
with:
publish-dir: "./docs"
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
branches: [devel]
pull_request:
branches: [main, master]
branches: [devel]

name: test-coverage

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
pull_request:
branches: [main, master, dev]
branches: [devel]
push:
branches: [main, master, dev]
branches: [devel]

name: R-CMD-check

Expand Down

0 comments on commit dd7add3

Please sign in to comment.