Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
slavaGanzin committed Oct 17, 2024
1 parent 149c003 commit 10c2b3a
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,6 @@ jobs:
draft: false
prerelease: false

- name: Create Archives
run: |
mkdir -p archives
tar -czvf archives/await-1.0.5-aarch64-apple-darwin.tar.gz -C releases await-macos-latest
tar -czvf archives/await-1.0.5-x86_64-unknown-linux-gnu.tar.gz -C releases await-ubuntu-latest

- name: Update Release Archives
if: steps.check_release.outputs.exists == 'true'
Expand All @@ -125,13 +120,17 @@ jobs:
releases
autocompletions
- name: Create Archives
run: |
mkdir -p archives
tar -czvf archives/await-1.0.5-aarch64-apple-darwin.tar.gz -C releases await-macos-latest
tar -czvf archives/await-1.0.5-x86_64-unknown-linux-gnu.tar.gz -C releases await-ubuntu-latest
- name: Upload Release Artifacts
uses: softprops/action-gh-release@v1
with:
files: |
releases/*
releases/await.*
autocompletions/*
archives/*
tag_name: 1.0.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 10c2b3a

Please sign in to comment.