Skip to content

Commit

Permalink
switch to org
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas committed Dec 25, 2024
1 parent f2e0d42 commit 9f46020
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: 🐬 Builds ArchLinux Images for DockerHub 🐬
#REF: https://docs.docker.com/build/ci/github-actions/multi-platform/
#SECRETS: DOCKERHUB_USERNAME || DOCKERHUB_TOKEN
#URL: https://hub.docker.com/r/azathothas/archlinux/tags
#For: https://github.com/Azathothas/Toolpacks/settings/actions/runners
#URL: https://hub.docker.com/r/pkgforge/archlinux/tags
#For: https://github.com/pkgforge/devscripts/tree/main/Github/Runners
#------------------------------------------------------------------------------------#
on:
#push:
Expand Down Expand Up @@ -31,7 +31,7 @@ jobs:
#Presets
set +x ; set +e
#--------------#
bash <(curl -qfsSL "https://pub.ajam.dev/repos/Azathothas/Arsenal/misc/Github/Runners/Ubuntu/debloat.sh")
bash <(curl -qfsSL "https://raw.githubusercontent.com/pkgforge/devscripts/refs/heads/main/Github/Runners/debloat_ubuntu.sh")
continue-on-error: true

- name: Setup Env
Expand All @@ -41,10 +41,10 @@ jobs:
#--------------#
#Docker Tags
DOCKER_TAG="v$(date +'%Y.%m.%d')" && export DOCKER_TAG="$DOCKER_TAG"
echo "DOCKER_TAG=$DOCKER_TAG" >> "$GITHUB_ENV"
echo "DOCKER_TAG=$DOCKER_TAG" >> "${GITHUB_ENV}"
#Repo
mkdir -p "/tmp/ARCHLINUX" && pushd "/tmp/ARCHLINUX" >/dev/null 2>&1
git clone --filter="blob:none" --depth="1" "https://github.com/Azathothas/docker-archlinux"
git clone --filter="blob:none" --depth="1" "https://github.com/pkgforge/docker-archlinux"
popd >/dev/null 2>&1
continue-on-error: true

Expand All @@ -63,14 +63,14 @@ jobs:
password: "${{ secrets.DOCKERHUB_TOKEN }}"
continue-on-error: true

#https://hub.docker.com/r/azathothas/archlinux
#https://hub.docker.com/r/pkgforge/archlinux
- name: Docker Build and Push (archlinux)
uses: docker/build-push-action@v6
with:
context: "/tmp/ARCHLINUX/docker-archlinux"
platforms: "linux/386,linux/amd64,linux/arm64,linux/arm/v7,linux/riscv64,linux/ppc64le"
tags: |
azathothas/archlinux:latest
azathothas/archlinux:${{ env.DOCKER_TAG }}
pkgforge/archlinux:latest
pkgforge/archlinux:${{ env.DOCKER_TAG }}
push: true
continue-on-error: true
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- #### [Docker images of Arch Linux](https://hub.docker.com/r/azathothas/archlinux/tags) [![Build and Deploy](https://github.com/fwcd/docker-archlinux/actions/workflows/build-deploy.yml/badge.svg)](https://github.com/fwcd/docker-archlinux/actions/workflows/build-deploy.yml)
- #### [Docker images of Arch Linux](https://hub.docker.com/r/pkgforge/archlinux/tags) [![Build and Deploy](https://github.com/pkgforge/docker-archlinux/actions/workflows/build-deploy.yml/badge.svg)](https://github.com/pkgforge/docker-archlinux/actions/workflows/build-deploy.yml)

Unofficial, automated Docker multi-platform images of Arch Linux for the following architectures:

Expand All @@ -19,7 +19,7 @@ Unofficial, automated Docker multi-platform images of Arch Linux for the followi
!# --rm will delete the container upon exit

!# This will drop you in a bash shell
docker run --rm -it --privileged --net="host" "azathothas/archlinux:latest"
docker run --rm -it --privileged --net="host" "pkgforge/archlinux:latest"
```

[^1]: The pentium4 architecture is for 32-bit CPUs that support SSE2 and the only one we support (for now). See [here](https://archlinux32.org/architecture) for a comparison of architectures supported by upstream.

0 comments on commit 9f46020

Please sign in to comment.