Skip to content

Commit

Permalink
Allow for manual run of explorer workflow (#1646)
Browse files Browse the repository at this point in the history
Now these instructions should be enough to have the `explorer` workflow
also work on the self-hosted runner:
https://github.com/cardano-scaling/hydra/actions/runs/10940621106/job/30373482416
  • Loading branch information
ch1bo authored Sep 20, 2024
2 parents 2cd1974 + 93e0a58 commit d5729d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,17 @@ done
Install the following pre-requisites:
* `git`
* `docker`
* `docker compose`

For instance on Ubuntu:
```bash
sudo apt install git docker.io
sudo apt install git docker.io docker-compose-v2
```

Ensure we can run docker commands:

``` bash
sudo usermod -aG docker $(whoami)
```

Prepare the common directory for cardano database:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/explorer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
explorer:
name: "Deploy"
runs-on: explorer
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit d5729d3

Please sign in to comment.