Skip to content

Chg maintainer + fixes for CRAN #12

Chg maintainer + fixes for CRAN

Chg maintainer + fixes for CRAN #12

Workflow file for this run

name: R-CMD-INSTALL-build
on:
push:
pull_request:
jobs:
release:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macOS-latest ]
R: [ '4.3' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.R }}
rtools-version: '43'
- uses: r-lib/actions/setup-r-dependencies@v2
- run: |
cd ..; R CMD INSTALL --build Renext
mkdir Renext/R-${{ matrix.R }}
mv Renext_*.* Renext/R-${{ matrix.R }}/.
shell: bash
name: R CMD INSTALL
- uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.os }}

Check failure on line 38 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
path: ./R-*
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
./R-*/*.tar.gz
./R-*/*.tgz
./R-*/*.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}