Skip to content

Commit

Permalink
fix: debugged testing COMBINE API
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Nov 13, 2021
1 parent 98ecd3a commit c7e1cb9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/buildLintTest.yml
@@ -1,6 +1,13 @@
name: Build, Lint, Test
on:
workflow_call:
secrets:
GITHUB_TOKEN:
required: true
GHCR_USERNAME:
required: true
GHCR_TOKEN:
required: true
inputs:
env:
required: false
Expand All @@ -18,15 +25,15 @@ on:
required: false
type: boolean
default: true
pushDockerImages:
push:
required: false
type: boolean
default: true

env:
NX_CLOUD_DISTRIBUTED_EXECUTION: true
INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
INPUT_PUSH: ${{ inputs.pushDockerImages }}
INPUT_PUSH: ${{ inputs.push }}

jobs:
main:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -10,6 +10,13 @@ on:
jobs:
CI:
uses: biosimulations/biosimulations/.github/workflows/buildLintTest.yml@dev
secrets:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
GHCR_USERNAME: ${{secrets.GHCR_USERNAME}}
GHCR_TOKEN: ${{secrets.GHCR_TOKEN}}
with:
push: true

Docker:
uses: biosimulations/biosimulations/.github/workflows/docker.yml@dev
secrets:
Expand Down

0 comments on commit c7e1cb9

Please sign in to comment.