summaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2021-04-23 16:53:01 +0200
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2021-04-23 16:53:01 +0200
commitbc33a592791a7516e734193347fd74517dca3dd6 (patch)
tree374be5f77ccc9b484d0f7a10a843d99ae06b9f7d /.github/workflows/build.yml
parent000413a432d0940182209b74d2e67ccacb4fdf7b (diff)
CI: Improve deployment directory structure
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index eb98750b4f..7bdf9af654 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -349,9 +349,9 @@ jobs:
run: >
if [[ "${GITHUB_REF}" =~ ^refs/tags/.* ]];
then
- export DEPLOY_PATH='mixxx-{git_describe}/mixxx-{git_describe}-{package_slug}{ext}';
+ export DEPLOY_PATH='releases/mixxx-{git_describe}/mixxx-{git_describe}-{package_slug}{ext}';
else
- export DEPLOY_PATH='builds/{git_branch}/mixxx-{git_describe}-{package_slug}{ext}';
+ export DEPLOY_PATH='snapshots/{git_branch}/mixxx-{git_describe}-{package_slug}{ext}';
fi;
python3 tools/deploy.py prepare-deployment
--slug '${{ matrix.artifacts_slug }}'
@@ -416,9 +416,9 @@ jobs:
run: >
if [[ "${GITHUB_REF}" =~ ^refs/tags/.* ]];
then
- export DEPLOY_PATH='mixxx-{git_describe}/manifest.json';
+ export DEPLOY_PATH='releases/mixxx-{git_describe}/manifest.json';
else
- export DEPLOY_PATH='builds/{git_branch}/manifest.json';
+ export DEPLOY_PATH='snapshots/{git_branch}/manifest.json';
fi;
python3 tools/deploy.py generate-manifest
--output-dir 'deploy/'