Skip to content

Commit

Permalink
ci: Modify .zipping mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
benaclejames committed Feb 5, 2024
1 parent 9560f70 commit b59f340
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
REPO_NAME=$(basename $GITHUB_REPOSITORY)
ZIP_FILE="out/$REPO_NAME.zip"
# Exclude .github folder
zip -r "$ZIP_FILE" * -x ".github/*"
zip -r "$ZIP_FILE" * -x ".github/*" -x "out"
- name: Upload zip file
uses: actions/upload-artifact@v2
Expand All @@ -37,4 +37,4 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: simple
path: out
path: ${{ github.workspace }}/out

0 comments on commit b59f340

Please sign in to comment.