Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaafanador3 committed Dec 21, 2023
1 parent 20b680c commit e8ffcde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/github_release.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def create_release(version)

puts 'Creating GitHub release'
prerelease = (version =~ /alpha|beta|rc|preview/) ? true : false
response = github.create_release(REPOSITORY, "v#{version}", name: "v#{version}", body: release_notes, prerelease: prerelease)
release = "v#{version}"
response = github.create_release(REPOSITORY, release, name: release, body: release_notes, prerelease: prerelease)
release_url = response[:url]

Dir.glob 'release_pkg/*.zip' do |upload|
Expand Down

0 comments on commit e8ffcde

Please sign in to comment.