We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 96be631 + 7f8ae89 commit ccb4b1bCopy full SHA for ccb4b1b
.github/workflows/release.yml
@@ -7,11 +7,17 @@ jobs:
7
runs-on: ubuntu-latest
8
env:
9
ARCHIVE_NAME: "matrices.zip"
10
+ ARCHIVE_FOLDER: "matrices"
11
steps:
12
- name: checkout
13
uses: actions/checkout@v2
14
- name: make archive
- run: zip -r $ARCHIVE_NAME *
15
+ run: |
16
+ # we want to create an archive without hidden files
17
+ # inside a specific parent directory
18
+ rsync -av --exclude=".*" . ../$ARCHIVE_FOLDER
19
+ cd ..
20
+ zip -r $GITHUB_WORKSPACE/$ARCHIVE_NAME $ARCHIVE_FOLDER
21
- name: upload to the release
22
uses: softprops/action-gh-release@v1
23
with:
0 commit comments