Skip to content

Commit

Permalink
ci: add wait
Browse files Browse the repository at this point in the history
  • Loading branch information
deantchi committed Aug 23, 2023
1 parent 7896129 commit 02331c9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,22 @@ jobs:
- name: Load image
run: |
docker load --input /tmp/artifacts/myimage.tar
cat /tmp/artifacts/myimage.tar | docker import - hirosystems/${{ github.event.repository.name }}:latest
docker image ls -a
- name: Import image
run: |
cat /tmp/artifacts/myimage.tar | docker import - hirosystems/${{ github.event.repository.name }}:latest
# - name: Import image
# run: |
# cat /tmp/artifacts/myimage.tar | docker import - hirosystems/${{ github.event.repository.name }}:latest
# docker tag hirosystems/${{ github.event.repository.name }}:${{ steps.meta.outputs.tags }} hirosystems/${{ github.event.repository.name }}:latest

- run: kubectl create namespace devnet
- run: kubectl create configmap stacks-devnet-api-conf --from-file=./Config.toml --namespace devnet
- run: kubectl apply -f ./templates/stacks-devnet-api.template.yaml

- name: Sleep for 30 seconds
run: sleep 30s
shell: bash

- run: kubectl get all --all-namespaces

# - name: Install stable toolchain
Expand Down

0 comments on commit 02331c9

Please sign in to comment.