Skip to content

Commit

Permalink
update release action
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxfight committed May 16, 2024
1 parent 6d5396d commit 5cd163d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
permissions:
contents: write
packages: write
strategy:
matrix:
platform:
- linux/amd64
- linux/arm64

steps:
- name: Checkout Repository
Expand Down Expand Up @@ -38,7 +43,7 @@ jobs:
with:
files: |
release.tar.gz
tag_name: ${{ steps.shorten_sha.outputs.short_sha }}
release_name: Release ${{ steps.shorten_sha.outputs.short_sha }}
tag_name: ${{ steps.shorten_sha.outputs.short_sha }}-${{ matrix.platform }}
release_name: Release ${{ steps.shorten_sha.outputs.short_sha }}-${{ matrix.platform }}
body: |
Release for commit ${{ steps.shorten_sha.outputs.short_sha }}
Release for commit ${{ steps.shorten_sha.outputs.short_sha }}-${{ matrix.platform }}

0 comments on commit 5cd163d

Please sign in to comment.