Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimens authored Feb 16, 2024
1 parent 65fd298 commit e82db58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/createrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,15 @@ jobs:
--title="${GITHUB_REPOSITORY#*/} ${{ github.ref_name }}" \
--generate-notes
- name: build artifacts
run: tar --exclude="test" --exclude=".git" --exclude=".github" --exclude=".snakemake" -zcvf harpy.${{ github.ref_name }}.tar.gz .
run: |
mkdir artifacts
tar --exclude="test" --exclude="artifacts" --exclude=".git" --exclude=".github" -zcvf artifacts/harpy.${{ github.ref_name }}.tar.gz .
- name: upload tarball
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./harpy.${{ github.ref_name }}.tar.gz
asset_path: ./artifacts/harpy.${{ github.ref_name }}.tar.gz
asset_name: harpy.${{ github.ref_name }}.tar.gz
asset_content_type: application/gzip

0 comments on commit e82db58

Please sign in to comment.