Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
RESOLC_VERSION=${{env.RESOLC_VERSION}}

- name: build and push
if: ${{ github.event_name == 'workflow_dispatch' }}
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' }}
uses: ./.github/actions/build-push-image
with:
registry: ${{ env.REGISTRY_PATH }}
Expand Down
4 changes: 2 additions & 2 deletions ci-unified/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ ENV SHELL=/bin/bash \
### base ###

# base | add non-root user
RUN groupadd -g 1000 nonroot && \
useradd -u 1000 -g 1000 -s /bin/bash -m nonroot
RUN groupadd -g 1001 nonroot && \
useradd -u 1001 -g 1001 -s /bin/bash -m nonroot

# base | customize cargo configuration
COPY ci-unified/cargo-config /root/.cargo/config
Expand Down
Loading