Skip to content

Commit 871f76e

Browse files
committed
Debug release publishing
1 parent 119a6c6 commit 871f76e

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/build_latest.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,9 @@ jobs:
3434

3535
- name: "List artifacts"
3636
run: |
37-
"ls ${HOME}"
38-
"ls /github/home"
39-
"ls /github/home/lkDist"
40-
"ls /github/home/lkDist/discvr*"
37+
ls /home/runner/work/_temp/_github_home
38+
ls /home/runner/work/_temp/_github_home/lkDist/*
39+
ls /home/runner/work/_temp/_github_home/lkDist/discvr/*
4140
4241
# See: https://github.com/marketplace/actions/automatic-releases
4342
- name: Deploy Build
@@ -48,4 +47,4 @@ jobs:
4847
automatic_release_tag: "latest"
4948
prerelease: true
5049
title: "DISCVR Development Build: ${{ fromJson(steps.get_default_branch.outputs.data).default_branch }}"
51-
files: ${HOME}/lkDist/discvr/DISCVR-*
50+
files: /home/runner/work/_temp/_github_home/lkDist/discvr/DISCVR-*

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ jobs:
1919
artifactory_password: ${{secrets.artifactory_password}}
2020
# NOTE: permissions are limited on the default secrets.GITHUB_TOKEN, including updating workflows, so use a personal access token
2121
github_token: ${{ secrets.PAT }}
22+
env:
23+
GENERATE_DIST: 1
2224

2325
- name: Upload Artifacts
2426
if: github.event_name == 'release' && github.event.action == 'created'
2527
uses: skx/github-action-publish-binaries@master
2628
env:
2729
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2830
with:
29-
args: ${HOME}/lkDist/discvr/DISCVR-*
31+
args: /home/runner/work/_temp/_github_home/lkDist/discvr/DISCVR-*

0 commit comments

Comments
 (0)