Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
valassi committed Sep 28, 2024
1 parent 2b3a9ff commit 4a6d961
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/archiver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,28 @@ jobs:
run: |
echo "HOME is ${HOME}"
echo "Current directory is $(pwd)"
cd branch_PR
echo "Current directory is now $(pwd)"
echo "Current branch is $(git branch --show-current)"
.github/workflows/archiver.sh
mv cudacpp.tar.gz ${HOME}
mv VERSION.txt ${HOME}
- name: release
# See https://github.com/softprops/action-gh-release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
cudacpp.tar.gz
VERSION.txt
${HOME}/cudacpp.tar.gz
${HOME}/VERSION.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: create_infodat
run: |
echo "HOME is ${HOME}"
echo "Current directory is $(pwd)"
cd branch_PR
echo "Current directory is now $(pwd)"
echo "Current branch is $(git branch --show-current)"
python3 .github/workflows/archiver.py version_info.dat
mv version_info.dat ${HOME}
Expand All @@ -50,6 +56,8 @@ jobs:
run: |
echo "HOME is ${HOME}"
echo "Current directory is $(pwd)"
cd branch_INFO
echo "Current directory is now $(pwd)"
echo "Current branch is $(git branch --show-current)"
ls
mv ${HOME}/version_info.dat .
Expand Down

0 comments on commit 4a6d961

Please sign in to comment.