You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl -sS https://starship.rs/install.sh | sh -s -- -y
132
+
echo 'eval "$(starship init zsh)"' >> ~/.zshrc
133
+
134
+
- name: Move demo.tape
135
+
run: mv demo.tape ${{ runner.temp }}
136
+
137
+
- name: Generate demo.gif
138
+
run: vhs demo.tape
139
+
working-directory: ${{ runner.temp }}
140
+
141
+
- name: Upload demo artifact
142
+
uses: actions/upload-artifact@v4
143
+
with:
144
+
name: demo-gif
145
+
path: ${{ runner.temp }}/demo.gif
146
+
147
+
release:
148
+
needs: [package, demo]
149
+
runs-on: ubuntu-24.04
150
+
steps:
151
+
- uses: actions/checkout@v4
152
+
153
+
- name: Download package artifacts
154
+
uses: actions/download-artifact@v4
155
+
with:
156
+
name: packages
157
+
158
+
- name: Download demo artifact
159
+
uses: actions/download-artifact@v4
160
+
with:
161
+
name: demo-gif
162
+
41
163
- name: Release
42
164
uses: softprops/action-gh-release@v2
43
165
with:
@@ -46,6 +168,7 @@ jobs:
46
168
files: |
47
169
*.deb
48
170
*.rpm
171
+
demo.gif
49
172
body: |
50
173
:sparkling_heart: I maintain **Cabin** in my spare time. Buy me a coffee on [GitHub Sponsors](https://github.com/sponsors/ken-matsui) so I can keep shipping features!
0 commit comments