Skip to content

Commit

Permalink
Update qbot-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Charmve authored Sep 27, 2023
1 parent 4eafaed commit f3d48f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/qbot-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
os: [ubuntu-20.04, macos-11.0, windows-2019]
python-version: [3.8]
env:
release_name1: qbot_${{ matrix.os}}_$release_name
release_name: qbot_${{ matrix.os}}_$release_name

steps:
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -164,7 +164,7 @@ jobs:
- name: Package
working-directory: .
run: |
tar -zcvf ${{ release_name1 }}.tar.gz -C qbot/dist *
tar -zcvf ${release_name}.tar.gz -C qbot/dist *
- name: Upload assets
id: upload-release-asset
Expand All @@ -173,8 +173,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.upload_url }}
asset_path: ${{ release_name1 }}.tar.gz
asset_name: ${{ release_name1 }}.tar.gz
asset_path: ${release_name}.tar.gz
asset_name: ${release_name}.tar.gz
asset_content_type: application/gzip

qbot_package:
Expand Down

0 comments on commit f3d48f8

Please sign in to comment.