Skip to content

Commit

Permalink
require uri after gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
zvkemp committed Aug 6, 2024
1 parent 6181a33 commit 28705c5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/fetch_release.rb
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
#!/usr/bin/env ruby

require 'bundler/inline'
require 'json'
require 'fileutils'
require 'uri'
require 'net/http'
require 'digest/sha2'

gemfile do
source 'https://rubygems.org'
gem 'octokit'
end

require 'json'
require 'fileutils'
require 'uri'
require 'net/http'
require 'digest/sha2'

root = File.expand_path('../..', __dir__)

Dir.chdir(root)
Expand Down

0 comments on commit 28705c5

Please sign in to comment.