We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b334451 commit 3429892Copy full SHA for 3429892
.github/workflows/build-dev-container.yaml
@@ -32,7 +32,13 @@ jobs:
32
dir: ${{fromJson(needs.list-dir.outputs.dir)}}
33
steps:
34
- name: Checkout
35
- uses: actions/checkout@v4
+ uses: actions/checkout@v4
36
+
37
+ - name: Set up QEMU
38
+ uses: docker/setup-qemu-action@v3
39
40
+ - name: Set up Docker Buildx
41
+ uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226
42
43
- name: Login to GitHub Container Registry
44
uses: docker/login-action@v2
templates/universal/.devcontainer/Dockerfile
@@ -6,5 +6,5 @@ RUN chsh -s /usr/bin/fish
6
# install oh-my-fish
7
RUN curl -L https://get.oh-my.fish | fish
8
9
-RUN omf theme agnoster
10
-
+# reload fish shell
+RUN fish -c "omf install agnoster"
0 commit comments