Skip to content

Commit

Permalink
ci(all): add repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
spywhere committed Apr 11, 2024
1 parent f217ec5 commit 321c747
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/macos-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@ jobs:
rm -f $REMOVE_FILES
fi
- name: Installation Info
env:
REPO_NAME: spywhere/dotfiles
run: |
sh install.sh -i
- name: Perform Installation
env:
FLAG: ${{ matrix.flag }}
REPO_NAME: spywhere/dotfiles
run: |
sh install.sh --profile=ci -y $FLAG no-app-store
6 changes: 4 additions & 2 deletions .github/workflows/os-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ jobs:
- name: Installation Info
env:
IMAGE: ${{ matrix.os }}
REPO_NAME: spywhere/dotfiles
run: |
docker run -v $(pwd):/root/dots $IMAGE sh -c "apt update && apt install -y curl && sh /root/dots/install.sh -i"
docker run -v $(pwd):/root/dots -e REPO_NAME=$REPO_NAME $IMAGE sh -c "apt update && apt install -y curl && sh /root/dots/install.sh -i"
- name: Perform Installation
env:
IMAGE: ${{ matrix.os }}
FLAG: ${{ matrix.flag }}
REPO_NAME: spywhere/dotfiles
run: |
docker run -v $(pwd):/root/dots $IMAGE sh -c "apt update && apt install -y curl && sh /root/dots/install.sh -y $FLAG"
docker run -v $(pwd):/root/dots -e REPO_NAME=$REPO_NAME $IMAGE sh -c "apt update && apt install -y curl && sh /root/dots/install.sh -y $FLAG"

0 comments on commit 321c747

Please sign in to comment.