Skip to content

Commit

Permalink
normalize github script names (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
anoipm authored Oct 10, 2024
1 parent a3c6154 commit 1eda3b0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
RELEASE_ID=$(./.github/scripts/release-draft.sh ${{ github.event.inputs.name }})
RELEASE_ID=$(./.github/scripts/create-draft-release.sh ${{ github.event.inputs.name }})
echo "release_id=$RELEASE_ID" >> $GITHUB_OUTPUT
- name: Create release assets
Expand All @@ -117,7 +117,7 @@ jobs:
PULL_BASE_REF: ${{ github.event.inputs.name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_ID: ${{ steps.create-draft.outputs.release_id }}
run: ./.github/scripts/release-assets.sh
run: ./.github/scripts/release.sh

outputs:
release_id: ${{ steps.create-draft.outputs.release_id }}
Expand All @@ -144,4 +144,4 @@ jobs:
- name: Publish release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./.github/scripts/publish_release.sh ${{ needs.create-draft.outputs.release_id }} ${{ github.event.inputs.latest_release }}
run: ./.github/scripts/publish-release.sh ${{ needs.create-draft.outputs.release_id }} ${{ github.event.inputs.latest_release }}

0 comments on commit 1eda3b0

Please sign in to comment.