Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
echo "tag=$tag" >> $GITHUB_OUTPUT
- name: Build Emacs Builder Image
id: emacs_builder
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.EMACS_BUILDER_IMAGE }}:${{ steps.target_tag.outputs.tag }}
context: containers/emacs/emacs_builder
Expand All @@ -55,7 +55,7 @@ jobs:
${{ github.event_name == 'pull_request' && format('type=registry,ref={0}:main', env.EMACS_BUILDER_IMAGE) || '' }}
- name: Build Doom Cache Image
id: doom_cache
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.DOOM_CACHE_IMAGE }}:${{ steps.target_tag.outputs.tag }}
context: containers/emacs/doom_cache
Expand All @@ -70,7 +70,7 @@ jobs:
${{ github.event_name == 'pull_request' && format('type=registry,ref={0}:main', env.DOOM_CACHE_IMAGE) || '' }}
- name: Build Base Layer
id: base
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.TARGET_IMAGE }}:${{ steps.target_tag.outputs.tag }}-base
context: containers/base
Expand All @@ -83,7 +83,7 @@ jobs:
${{ github.event_name == 'pull_request' && format('type=registry,ref={0}:main-base', env.TARGET_IMAGE) || '' }}
- name: Build Agent Layer
id: agent
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.TARGET_IMAGE }}:${{ steps.target_tag.outputs.tag }}-agent
context: containers/agent
Expand All @@ -97,7 +97,7 @@ jobs:
${{ github.event_name == 'pull_request' && format('type=registry,ref={0}:main-agent', env.TARGET_IMAGE) || '' }}
- name: Build C++ Layer
id: cpp
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.TARGET_IMAGE }}:${{ steps.target_tag.outputs.tag }}-cpp
context: containers/cpp
Expand All @@ -111,7 +111,7 @@ jobs:
${{ github.event_name == 'pull_request' && format('type=registry,ref={0}:main-cpp', env.TARGET_IMAGE) || '' }}
- name: Build Python Layer
id: python
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.TARGET_IMAGE }}:${{ steps.target_tag.outputs.tag }}-python
context: containers/python
Expand All @@ -125,7 +125,7 @@ jobs:
${{ github.event_name == 'pull_request' && format('type=registry,ref={0}:main-python', env.TARGET_IMAGE) || '' }}
- name: Build ROS Layer
id: ros
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.TARGET_IMAGE }}:${{ steps.target_tag.outputs.tag }}-ros
context: containers/ros
Expand All @@ -139,7 +139,7 @@ jobs:
${{ github.event_name == 'pull_request' && format('type=registry,ref={0}:main-ros', env.TARGET_IMAGE) || '' }}
- name: Build EMSDK Layer
id: emsdk
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.TARGET_IMAGE }}:${{ steps.target_tag.outputs.tag }}-emsdk
context: containers/emsdk
Expand All @@ -153,7 +153,7 @@ jobs:
${{ github.event_name == 'pull_request' && format('type=registry,ref={0}:main-emsdk', env.TARGET_IMAGE) || '' }}
- name: Build Emacs Layer
id: emacs
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.TARGET_IMAGE }}:${{ steps.target_tag.outputs.tag }}
context: containers/emacs
Expand All @@ -170,7 +170,7 @@ jobs:
${{ github.event_name == 'pull_request' && format('type=registry,ref={0}:main', env.TARGET_IMAGE) || '' }}
- name: Build Xpra Layer
id: xpra
uses: taughz/hn2b@4bf6c223193412b9d004ba5ae94040c4558c7213
uses: taughz/hn2b@70594dcbb344b73ce700fdde3e31e0638bd45bef
with:
image: ${{ env.TARGET_IMAGE }}:${{ steps.target_tag.outputs.tag }}-xpra
context: containers/xpra
Expand Down
Loading