Skip to content

Commit

Permalink
build: fix release workflow (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhan83 authored Feb 23, 2024
1 parent 2120e3e commit ed51db3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
needs: [create-release-draft]
steps:
- name: Find matching draft tag
description: Fetches the `asset_id` of the uploaded bundle. A non-empty `asset_id` signals a successful upload, preventing duplicate uploads in retry attempts.
# Fetches the `asset_id` of the uploaded bundle. A non-empty `asset_id` signals a successful upload, preventing duplicate uploads in retry attempts.
id: prep
run: |
$res = Invoke-WebRequest -Uri "https://api.github.com/repos/${{ github.repository }}/releases" -Headers @{'Authorization' = "token ${{ github.token }}"}
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
needs: [create-release-draft]
steps:
- name: Find matching draft tag
description: Fetches the `asset_id` of the uploaded bundle. A non-empty `asset_id` signals a successful upload, preventing duplicate uploads in retry attempts.
# Fetches the `asset_id` of the uploaded bundle. A non-empty `asset_id` signals a successful upload, preventing duplicate uploads in retry attempts.
id: prep
run: |
VERSION=$(curl -s -H "Authorization: token ${{ github.token }}" \
Expand Down

0 comments on commit ed51db3

Please sign in to comment.