Skip to content

Commit

Permalink
Pre-Release deployment pipeline title (#9)
Browse files Browse the repository at this point in the history
Include commit hash in title of pre-release
Change title of pre-release from Release to Pre-Release
  • Loading branch information
Kitt3120 committed Nov 10, 2023
1 parent 90c42db commit 7826b46
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 55 deletions.
54 changes: 0 additions & 54 deletions .github/workflows/deploy.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/deploy_prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Provided by GitHub Actions
run: gh release create "${{ steps.commit_hash.outputs.commit_hash }}" --repo="$GITHUB_REPOSITORY" --title="Release ${{ steps.version.outputs.version }}" --generate-notes --latest --prerelease "./target/package/${{ steps.crate_name.outputs.crate_name }}-${{ steps.version.outputs.version }}.crate"
run: gh release create "${{ steps.commit_hash.outputs.commit_hash }}" --repo="$GITHUB_REPOSITORY" --title="Pre-Release ${{ steps.commit_hash.outputs.commit_hash }} (${{ steps.version.outputs.version }})" --generate-notes --latest --prerelease "./target/package/${{ steps.crate_name.outputs.crate_name }}-${{ steps.version.outputs.version }}.crate"

0 comments on commit 7826b46

Please sign in to comment.