Skip to content

Commit

Permalink
fix: test cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger authored Oct 12, 2023
1 parent ec14e95 commit 98e3b9f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ jobs:

- name: Archive Repository
run: |
mkdir -p $GITHUB_WORKSPACE/assets
cp -r . $GITHUB_WORKSPACE/assets/m1-with-submodules
tar -czvf $GITHUB_WORKSPACE/assets/m1-with-submodules.tar.gz -C $GITHUB_WORKSPACE/assets m1-with-submodules
mkdir -p $RUNNER_TEMP/assets
cp -r . $RUNNER_TEMP/assets/m1-with-submodules
tar -czvf $RUNNER_TEMP/assets/m1-with-submodules.tar.gz -C $RUNNER_TEMP/assets m1-with-submodules
cp $RUNNER_TEMP/assets/m1-with-submodules.tar.gz $GITHUB_WORKSPACE/m1-with-submodules.tar.gz
- name: Create Release
Expand All @@ -59,7 +60,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: $GITHUB_WORKSPACE/assets/m1-with-submodules.tar.gz
asset_path: $GITHUB_WORKSPACE/m1-with-submodules.tar.gz
asset_name: m1-with-submodules.tar.gz
asset_content_type: application/gzip

Expand Down

0 comments on commit 98e3b9f

Please sign in to comment.