Skip to content

Commit

Permalink
no sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Sep 6, 2024
1 parent 20c48bb commit 4993045
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,13 @@ jobs:

steps:

- run: |
apt update
apt install sudo ssh -y
# - run: |
# apt update
# apt install sudo ssh -y

- shell: bash
run: 'echo HOME=/root | sudo tee -a $GITHUB_ENV'
run: echo HOME=/root >> $GITHUB_ENV
# run: 'echo HOME=/root | sudo tee -a $GITHUB_ENV'

- run: |
echo $HOME
Expand All @@ -58,6 +59,7 @@ jobs:
run: |
find . -name "docker-compose.yml" -print0 | xargs -0 -I {} sh -c "sed -i -e '/###/d' {} && sed -i -e 's/##//' {}"
mkdir -p /tmp/workspace/code
docker network prune -f >/dev/null 2>&1 && docker network inspect amazeeio-network >/dev/null 2>&1 || docker network create amazeeio-network >/dev/null 2>&1 || true
# - name: Create cache keys for database caching as files
# run: |
Expand Down

0 comments on commit 4993045

Please sign in to comment.