Skip to content

Commit

Permalink
Merge pull request #99 from antoniovazquezblanco/master_transition
Browse files Browse the repository at this point in the history
Change references to develop. Now we develop in master!
  • Loading branch information
BatchDrake committed Jan 13, 2024
2 parents b22e03a + fc4326e commit b041a4f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "develop"
target-branch: "master"
schedule:
interval: "weekly"
- package-ecosystem: "gitsubmodule"
directory: "/"
target-branch: "develop"
target-branch: "master"
schedule:
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: "CodeQL"

on:
push:
branches: [ "develop" ]
branches: [ "master" ]
paths:
- src/
pull_request:
branches: [ "develop" ]
branches: [ "master" ]
paths:
- src/

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ jobs:
path: build/doc/html/

- name: Setup Pages
if: contains(github.ref, 'develop') && (github.event_name != 'pull_request_target')
if: contains(github.ref, 'master') && (github.event_name != 'pull_request_target')
uses: actions/configure-pages@v4
with:
enablement: true

- name: Upload documentation to Github Pages
if: contains(github.ref, 'develop') && (github.event_name != 'pull_request_target')
if: contains(github.ref, 'master') && (github.event_name != 'pull_request_target')
uses: actions/upload-pages-artifact@v3
with:
path: build/doc/html/

- name: Deploy to GitHub Pages
if: contains(github.ref, 'develop') && (github.event_name != 'pull_request_target')
if: contains(github.ref, 'master') && (github.event_name != 'pull_request_target')
uses: actions/deploy-pages@v4

- name: Documentation coverage
Expand Down
4 changes: 2 additions & 2 deletions doc/Building.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

## Getting the code

Just clone it from the GitHub repository. Make sure you pass `--recurse-submodules` to `git clone` so all required submodules are also cloned, and `-b develop` to get the latest changes from the development branch.
Just clone it from the GitHub repository. Make sure you pass `--recurse-submodules` to `git clone` so all required submodules are also cloned.

```bash
git clone -b develop --recurse-submodules https://github.com/BatchDrake/sigutils.git
git clone --recurse-submodules https://github.com/BatchDrake/sigutils.git
```


Expand Down

0 comments on commit b041a4f

Please sign in to comment.