Skip to content

Commit

Permalink
Update github worklows
Browse files Browse the repository at this point in the history
  • Loading branch information
jonlamb-gh committed May 8, 2024
1 parent 9a666cf commit b420e74
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.AUXON_GHCR_TOKEN }}
password: ${{ secrets.AUXON_GHCR_TOKEN_RO }}

- name: Install system packages
run: |
Expand Down Expand Up @@ -87,9 +87,9 @@ jobs:
- name: Start Modality server
run: |
image="ghcr.io/auxoncorp/modalityd-nightly:latest"
if [ "${{github.event.inputs.package_channel}}" == "stable" ]; then
image="ghcr.io/auxoncorp/modalityd:latest"
image="ghcr.io/auxoncorp/modalityd:latest"
if [ "${{github.event.inputs.package_channel}}" == "nightly" ]; then
image="ghcr.io/auxoncorp/modalityd-nightly:latest"
fi
mkdir -p modalityd_data
docker run \
Expand Down Expand Up @@ -136,9 +136,9 @@ jobs:
- name: Import data
working-directory: test_system
run: |
image="ghcr.io/auxoncorp/modality-reflector-nightly:latest"
if [ "${{github.event.inputs.package_channel}}" == "stable" ]; then
image="ghcr.io/auxoncorp/modality-reflector:latest"
image="ghcr.io/auxoncorp/modality-reflector:latest"
if [ "${{github.event.inputs.package_channel}}" == "nightly" ]; then
image="ghcr.io/auxoncorp/modality-reflector-nightly:latest"
fi
docker run \
--name reflector \
Expand Down

0 comments on commit b420e74

Please sign in to comment.