storage: add missing javadoc on VariantMongoDBAdaptor.updateAnnotatio… #1
This file contains hidden or 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
| 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: | ||
| 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 | ||