Merge pull request #30 from arminius-smh/fix-deployment

Fix Deployment
This commit is contained in:
Pim Snel 2024-02-11 15:01:53 +00:00 committed by GitHub
commit d38a185ed2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.3
#bundler-cache: true
- run: |

View File

@ -1,11 +1,11 @@
GEM
remote: https://rubygems.org/
specs:
mini_portile2 (2.6.1)
nokogiri (1.12.5)
mini_portile2 (~> 2.6.1)
mini_portile2 (2.8.5)
nokogiri (1.16.2)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
racc (1.6.0)
racc (1.7.3)
PLATFORMS
ruby

View File

@ -3,7 +3,7 @@ require 'nokogiri'
require 'json'
require 'pp'
url = 'https://nix-community.github.io/home-manager/options.html'
url = 'https://nix-community.github.io/home-manager/options.xhtml'
html=""
URI.open(url) do |f|
html = f.read

View File

@ -1,7 +1,7 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = [
ruby_2_7
ruby_3_3
];
shellHook = ''
mkdir -p .nix-gems