Skip to content

Commit ea9bd31

Browse files
committed
fix indentation
1 parent 37c8112 commit ea9bd31

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ on:
77
jobs:
88
build-qs:
99
runs-on: macos-latest
10+
env:
11+
QS_SOURCE_ROOT: /tmp/git/quicksilver
12+
QS_DONT_TEST: 1
13+
CONFIGURATION: Debug
1014
steps:
11-
with:
12-
QS_SOURCE_ROOT: /tmp/git/quicksilver
13-
QS_DONT_TEST: 1
14-
CONFIGURATION: Debug
15-
run: |
16-
latest_tag=$(
17-
git ls-remote --tags --refs --sort="-v:refname" https://github.com/quicksilver/quicksilver |
18-
awk -F/ '{ print $NF; exit }'
19-
)
20-
mkdir -p "${QS_SOURCE_ROOT}"
21-
git clone --recurse-submodules --branch="${latest_tag}" --depth=1 https://github.com/quicksilver/Quicksilver.git "${QS_SOURCE_ROOT}"
22-
23-
pushd "${QS_SOURCE_ROOT}"
24-
./Tools/qsrelease
25-
popd
15+
run: |
16+
latest_tag=$(
17+
git ls-remote --tags --refs --sort="-v:refname" https://github.com/quicksilver/quicksilver |
18+
awk -F/ '{ print $NF; exit }'
19+
)
20+
mkdir -p "${QS_SOURCE_ROOT}"
21+
git clone --recurse-submodules --branch="${latest_tag}" --depth=1 https://github.com/quicksilver/Quicksilver.git "${QS_SOURCE_ROOT}"
22+
23+
pushd "${QS_SOURCE_ROOT}"
24+
./Tools/qsrelease
25+
popd
2626
2727
template-plugin:
2828
runs-on: macos-latest
@@ -31,6 +31,9 @@ jobs:
3131
- uses: actions/checkout@v4
3232
- run: |
3333
set -x
34+
35+
pwd
36+
3437
python -m pip install --user cookiecutter
3538
3639
pushd "$(mktemp -d)"

0 commit comments

Comments
 (0)