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
EXPORT_LK_CONTAINERS: "${{ github.event_name == 'pull_request' && 'yes' || 'no' }}"# Builds on PRs don't push images to a registry so they need to be passed on through GitHub Artifacts.
99
+
EXPORT_LK_CONTAINERS: "${{ github.ref != 'refs/heads/main' && 'yes' || 'no' }}"# Builds on PRs don't push images to a registry so they need to be passed on through GitHub Artifacts.
100
100
EXPORT_LK_CONTAINERS_DIR: "${{ runner.temp }}"
101
101
run: bash build.sh linuxkit-containers
102
102
@@ -141,7 +141,7 @@ jobs:
141
141
- name: Build and Push and Export Kernel ${{matrix.kernel}} (${{ matrix.arch }})
EXPORT_KERNEL_IMAGE: "${{ github.event_name == 'pull_request' && 'yes' || 'no' }}"# Builds on PRs don't push images to a registry so they need to be passed on through GitHub Artifacts.
144
+
EXPORT_KERNEL_IMAGE: "${{ github.ref != 'refs/heads/main' && 'yes' || 'no' }}"# Builds on PRs don't push images to a registry so they need to be passed on through GitHub Artifacts.
0 commit comments