Skip to content

Commit

Permalink
actions: Fix general-worker if spacing, update action
Browse files Browse the repository at this point in the history
  • Loading branch information
kallisti5 committed Dec 28, 2024
1 parent f621181 commit ed1b727
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/general-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Github Container registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
4 changes: 2 additions & 2 deletions containers/general-worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ RUN apt update && apt install -y --no-install-recommends \
xz-utils \
zlib1g-dev; \
if [ "$(uname -m)" = "x86_64" ]; then apt install -y gcc-multilib; fi; \
if [ "$(uname -m)" = "x86_64"]; then wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /usr/local/bin/mc; fi; \
if [ "$(uname -m)" = "aarch64"]; then wget https://dl.min.io/client/mc/release/linux-arm64/mc -O /usr/local/bin/mc; fi; \
if [ "$(uname -m)" = "x86_64" ]; then wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /usr/local/bin/mc; fi; \
if [ "$(uname -m)" = "aarch64" ]; then wget https://dl.min.io/client/mc/release/linux-arm64/mc -O /usr/local/bin/mc; fi; \
chmod 755 /usr/local/bin/mc; \
cd /tmp && \
wget https://github.com/MestreLion/git-tools/archive/refs/tags/v2022.12.tar.gz -O /tmp/v2022.12.tar.gz && \
Expand Down

0 comments on commit ed1b727

Please sign in to comment.