Revert "Add code to cache the first page of each mGAP JBrowse session" #1638
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
name: Build DISCVR | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
build-modules: | |
# See: https://help.github.com/en/actions/reference/contexts-and-expression-syntax-for-github-actions#github-context | |
# https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables#default-environment-variables | |
if: github.repository == 'BimberLabInternal/BimberLabKeyModules' | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Build DISCVR" | |
uses: bimberlabinternal/DevOps/githubActions/discvr-build@master | |
with: | |
artifactory_user: ${{secrets.artifactory_user}} | |
artifactory_password: ${{secrets.artifactory_password}} | |
# NOTE: permissions are limited on the default secrets.GITHUB_TOKEN, including updating workflows, so use a personal access token | |
github_token: ${{ secrets.PAT }} | |