Skip to content

storage: add missing javadoc on VariantMongoDBAdaptor.updateAnnotatio… #1

storage: add missing javadoc on VariantMongoDBAdaptor.updateAnnotatio…

storage: add missing javadoc on VariantMongoDBAdaptor.updateAnnotatio… #1

name: Build opencga r-client
on:
workflow_call:
inputs:
branch:
type: string
required: true
jobs:
build-r-client:
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:

Check failure on line 16 in .github/workflows/reusable-build-r-client.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/reusable-build-r-client.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
persist-credentials: false
with:
fetch-depth: '10'
ref: ${{ inputs.branch }}
token: ${{ secrets.ZETTA_GH_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build R client
run: |
./client-builder.sh --skip-python --skip-javascript
- name: Extract version from DESCRIPTION
id: version
run: |
VERSION=$(grep '^Version:' build/clients/R/DESCRIPTION | cut -d' ' -f2)
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Upload built R package as artifact
uses: actions/upload-artifact@v4
with:
name: opencga-R-client-${{ steps.version.outputs.version }}.tar.gz
path: build/dist/opencgaR_${{ steps.version.outputs.version }}.tar.gz