Skip to content

Commit

Permalink
[CICD] workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger authored Oct 6, 2023
1 parent aa296fe commit a9c165c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 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 /assets
cp -r . /assets/m1-with-submodules
tar -czvf /assets/m1-with-submodules.tar.gz ./m1-with-submodules
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
- name: Create Release
id: create_release
Expand Down

0 comments on commit a9c165c

Please sign in to comment.