-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from inbo/hotfix
New version
- Loading branch information
Showing
87 changed files
with
1,828 additions
and
1,970 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
^_pkgdown.yml$ | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
Dockerfile | ||
^.*\.Rproj$ | ||
^CITATION\.cff$ | ||
^LICENSE.md$ | ||
^README\.Rmd$ | ||
^\.Rproj\.user$ | ||
^\.github$ | ||
^\.httr-oauth$ | ||
^\.Rproj\.user$ | ||
^\.zenodo\.json$ | ||
^_pkgdown.yml$ | ||
^checklist.yml$ | ||
^CITATION\.cff$ | ||
^codecov\.yml$ | ||
^data-raw$ | ||
^docs$ | ||
^LICENSE.md$ | ||
^man-roxygen$ | ||
^pkgdown$ | ||
^README\.Rmd$ | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
create_docker.sh | ||
docker | ||
Dockerfile | ||
docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,17 +5,16 @@ on: | |
- master | ||
- ghpages | ||
|
||
name: "check package" | ||
name: "check package with checklist" | ||
|
||
jobs: | ||
check-package: | ||
runs-on: ubuntu-latest | ||
name: "check package" | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
ORCID_TOKEN: ${{ secrets.ORCID_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: inbo/actions/check_pkg@master | ||
with: | ||
token: ${{ secrets.PAT }} | ||
aptget: libpoppler-cpp-dev | ||
- uses: inbo/actions/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,20 +3,17 @@ on: | |
branches: | ||
- main | ||
- master | ||
schedule: | ||
- cron: '6 0 15 * *' | ||
permissions: | ||
contents: write | ||
|
||
name: "check package on main" | ||
name: "check package on main with checklist" | ||
|
||
jobs: | ||
check-package: | ||
runs-on: ubuntu-latest | ||
name: "check package" | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
ORCID_TOKEN: ${{ secrets.ORCID_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: inbo/actions/check_pkg@master | ||
with: | ||
token: ${{ secrets.PAT }} | ||
aptget: libpoppler-cpp-dev | ||
- uses: inbo/actions/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ on: | |
- master | ||
|
||
name: test-inbomd-examples | ||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
test-examples: | ||
runs-on: ubuntu-latest | ||
|
@@ -13,7 +16,11 @@ jobs: | |
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: build examples | ||
uses: inbo/actions/render_inbomd@master | ||
uses: inbo/actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
EXAMPLE_BRANCH: main | ||
|
||
- name: push gh-pages | ||
if: ${{ github.event_name == 'push' }} | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
name: Releases | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
name: Create Release | ||
- v* | ||
workflow_run: | ||
workflows: ["check package on main"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
|
||
build: | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- name: Get tag message | ||
run: | | ||
TAG_BODY=$(git tag --contains ${{ github.sha }} -n100 | awk '(NR>1)') | ||
echo "::set-output name=TAG_BODY::$TAG_BODY" | ||
TAG=$(git tag --contains $(git rev-parse HEAD)) | ||
TAG_BODY=$(git tag --contains {{ github.sha }} -n100 | awk '(NR>1)') | ||
echo "TAG=$TAG" >> $GITHUB_OUTPUT | ||
echo "TAG_BODY=$TAG_BODY" >> $GITHUB_OUTPUT | ||
id: tag-body | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
name: Release ${{ steps.tag-body.outputs.TAG }} | ||
tag: ${{ steps.tag-body.outputs.TAG }} | ||
body: ${{ steps.tag-body.outputs.TAG_BODY }} | ||
draft: false | ||
prerelease: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
*.dbf | ||
*.doc* | ||
*.gddoc | ||
*.gdsheet | ||
*.gpkg | ||
*.html | ||
*.log | ||
*.mdb | ||
*.shp* | ||
*.shx | ||
*.synctex.gz | ||
*.toc | ||
*.xls* | ||
*_files | ||
.DS_Store | ||
.httr-oauth | ||
.RData | ||
.Rhistory | ||
.Rproj.user | ||
.Ruserdata | ||
*.html | ||
*.log | ||
*.synctex.gz | ||
*.toc | ||
.httr-oauth | ||
docs | ||
inst/doc | ||
libs | ||
output | ||
renv/library |
Oops, something went wrong.