We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89e1b30 commit 8003c3fCopy full SHA for 8003c3f
.github/workflows/gem-install.yml
@@ -63,6 +63,19 @@ jobs:
63
- run: "gem install pkg/tailwindcss-rails-*.gem"
64
- run: "tailwindcss --help"
65
66
+ linux-musl-install:
67
+ needs: ["package"]
68
+ runs-on: ubuntu-latest
69
+ container:
70
+ image: ruby:3.0-alpine
71
+ steps:
72
+ - uses: actions/download-artifact@v2
73
+ with:
74
+ name: gem-x86_64-linux
75
+ path: pkg
76
+ - run: "gem install pkg/tailwindcss-rails-*.gem"
77
+ - run: "tailwindcss --help"
78
+
79
darwin-install:
80
needs: ["package"]
81
runs-on: macos-latest
0 commit comments