Skip to content

Commit

Permalink
struggling with workspace variable ...
Browse files Browse the repository at this point in the history
// BelongsTo: CS-332
// [skip ci]
  • Loading branch information
jgabler-hpc committed May 28, 2024
1 parent b6bc352 commit ac5d5e1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/daily_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ jobs:
runs-on: ubuntu-latest
container: hpcgridware/clusterscheduler-image-rocky89:latest
steps:
- name: show workspace
run: echo "${{ github.workspace }}"
- name: checkout
uses: actions/checkout@v4
- name: show workspace after checkout
run: echo "${{ github.workspace }}"
- name: run build and test script
shell: bash
run: container/build_and_test.sh -bashrc -pkg -doc
Expand All @@ -17,7 +21,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: daily-build
path: ${{ env.RUNNER_WORKSPACE }}/packages/
path: ${{ github.workspace }}/../packages/
retention-days: 7
compression-level: 0
- name: output artifact url
Expand Down

0 comments on commit ac5d5e1

Please sign in to comment.