Skip to content

Commit

Permalink
Update CI config.
Browse files Browse the repository at this point in the history
  • Loading branch information
reitermarkus committed Jun 27, 2024
1 parent 05b1498 commit 18e690e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sync-ci-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone main repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Clone secondary repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: Homebrew/homebrew-cask
path: homebrew-cask
Expand Down
5 changes: 4 additions & 1 deletion Formula/assetcache_exporter.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
class AssetcacheExporter < Formula
desc "Prometheus exporter for AssetCache"
homepage "https://github.com/reitermarkus/assetcache_exporter"
url "https://github.com/reitermarkus/assetcache_exporter/archive/refs/tags/v0.2.0.tar.gz"
sha256 "0eab4e7acb96505943c1bcebf4906734163023a81fec99ccbb893b45aee4e4ae"
head "https://github.com/reitermarkus/assetcache_exporter.git", branch: "main"

depends_on "ruby"
Expand All @@ -10,7 +12,8 @@ def install
system "bundle", "install"
(libexec/"bin").install "assetcache_exporter.rb"
(bin/"assetcache_exporter").write_env_script libexec/"bin/assetcache_exporter.rb",
GEM_HOME: ENV["GEM_HOME"]
GEM_HOME: ENV["GEM_HOME"],
PATH: "#{Formula["ruby"].opt_bin}:$PATH"
end

service do
Expand Down
4 changes: 2 additions & 2 deletions Formula/dokku.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Dokku < Formula
desc "Command-line client for the Dokku PaaS"
homepage "http://dokku.viewdocs.io"
url "https://github.com/dokku/dokku/archive/v0.26.8.tar.gz"
sha256 "03bf6712b6f46a2d1b6fb8b93892634f7658c5585d11523985466d3454487d05"
url "https://github.com/dokku/dokku/archive/refs/tags/v0.34.5.tar.gz"
sha256 "33ca8c8505b8ef2b4e9f61da90983c59625512cee1dfb852ee3ba8f2af8e2a2f"

def install
bin.install "contrib/dokku_client.sh" => "dokku"
Expand Down
2 changes: 1 addition & 1 deletion Formula/lockscreen.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Lockscreen < Formula
desc "Utility to lock your screen"
homepage "https://github.com/reitermarkus/lockscreen"
url "https://github.com/reitermarkus/lockscreen/archive/1.0.0.tar.gz"
url "https://github.com/reitermarkus/lockscreen/archive/refs/tags/1.0.0.tar.gz"
sha256 "918e57b662f764ae5a5c98c9b37537ac97471cf46bd30910c71aa67281c925ff"

def install
Expand Down
2 changes: 1 addition & 1 deletion Formula/rbenv-system-ruby.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class RbenvSystemRuby < Formula
desc "Plugin to make rbenv compatible with the system Ruby"
homepage "https://github.com/reitermarkus/rbenv-system-ruby"
url "https://github.com/reitermarkus/rbenv-system-ruby/archive/1.0.4.tar.gz"
url "https://github.com/reitermarkus/rbenv-system-ruby/archive/refs/tags/1.0.4.tar.gz"
sha256 "0d06ee1ad33b988cba2d27511ab487940bf0c1bf968cd6fd0bffc1b054ca3c01"
head "https://github.com/reitermarkus/rbenv-system-ruby.git"

Expand Down

0 comments on commit 18e690e

Please sign in to comment.