diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-10-18 09:25:14 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-18 20:46:01 -0700 |
commit | 6b334ac7d972fedfb8ccb1287e5d661e321325cb (patch) | |
tree | 4df94fd51a00f0566b33a537ad2c177cf1619ee0 /.github/workflows | |
parent | 2f1997fb3ab1469979b37b883933bd412904ff60 (diff) | |
download | subsurface-6b334ac7d972fedfb8ccb1287e5d661e321325cb.tar.gz |
GitHub Actions: improve naming and location of files
Just to make things a little more consistent.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/linux-trusty-5.12.yml | 2 | ||||
-rw-r--r-- | .github/workflows/scripts/linux-in-container-build.sh (renamed from .github/workflows/in-container-build.sh) | 0 | ||||
-rw-r--r-- | .github/workflows/scripts/windows-in-container-build.sh (renamed from .github/workflows/windows-in-container-build.sh) | 0 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 2 |
4 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/linux-trusty-5.12.yml b/.github/workflows/linux-trusty-5.12.yml index 3b6256c8b..0c20915ae 100644 --- a/.github/workflows/linux-trusty-5.12.yml +++ b/.github/workflows/linux-trusty-5.12.yml @@ -14,7 +14,7 @@ jobs: - name: run build run: | cd .. - bash -x subsurface/.github/workflows/in-container-build.sh + bash -x subsurface/.github/workflows/scripts/linux-in-container-build.sh - name: create CI release uses: ./.github/actions/release diff --git a/.github/workflows/in-container-build.sh b/.github/workflows/scripts/linux-in-container-build.sh index 8a2b31b59..8a2b31b59 100644 --- a/.github/workflows/in-container-build.sh +++ b/.github/workflows/scripts/linux-in-container-build.sh diff --git a/.github/workflows/windows-in-container-build.sh b/.github/workflows/scripts/windows-in-container-build.sh index 1993f98bc..1993f98bc 100644 --- a/.github/workflows/windows-in-container-build.sh +++ b/.github/workflows/scripts/windows-in-container-build.sh diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index dd102425f..b94179cc6 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -30,7 +30,7 @@ jobs: - name: run build run: | cd /win - bash -x subsurface/.github/workflows/windows-in-container-build.sh 2>&1 | tee build.log + bash -x subsurface/.github/workflows/scripts/windows-in-container-build.sh 2>&1 | tee build.log grep "Built target installer" build.log - name: create CI release |