Skip to content

Commit

Permalink
[INFRA] Fix the package renaming in the R-CMD-check workflow (#182)
Browse files Browse the repository at this point in the history
Some configuration changes were forgotten in the workflow at the time of the name change (from `bpmnVisualization` to `bpmnVisualizationR`).
  • Loading branch information
csouchet authored Jan 9, 2023
1 parent 449fbc6 commit 49b1035
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.config.os }}-r${{ matrix.config.r }}-source-package
path: bpmnVisualization_*.tar.gz
path: bpmnVisualizationR_*.tar.gz
- name: Check the source package
id: source_package_checks
run: R CMD check --as-cran bpmnVisualization_*.tar.gz
run: R CMD check --as-cran bpmnVisualizationR_*.tar.gz

- name: Upload source package check results
if: ${{ failure() && steps.source_package_checks.outcome == 'failure' }}
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.config.os }}-r${{ matrix.config.r }}-source-package-check-results
path: bpmnVisualization.Rcheck
path: bpmnVisualizationR.Rcheck

0 comments on commit 49b1035

Please sign in to comment.