mirror of
https://github.com/dockersrc/archlinux
synced 2025-09-18 09:57:39 -04:00
🦈🏠🐜❗ Initial Commit ❗🐜🦈🏠
Some checks failed
archlinux / release-archlinux (push) Failing after 16m9s
Some checks failed
archlinux / release-archlinux (push) Failing after 16m9s
This commit is contained in:
60
.github/workflows/publish.yaml
vendored
Normal file
60
.github/workflows/publish.yaml
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
name: archlinux-latest
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
archlinux-latest:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
packages: write
|
||||
contents: read
|
||||
attestations: write
|
||||
id-token: write
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
env:
|
||||
RUNNER_TOOL_CACHE: /toolcache
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
||||
- name: Get Meta
|
||||
id: meta
|
||||
env:
|
||||
HUB: ghcr.io
|
||||
ORG: dockersrc
|
||||
TAG: ${{ vars.DOCKER_TAG }}
|
||||
run: |
|
||||
echo DATE_TAG=$(date +'%y%m') >> $GITHUB_OUTPUT
|
||||
echo DOCKER_HUB=$([ -n "$HUB" ] && echo $HUB || echo "ghcr.io") >> $GITHUB_OUTPUT
|
||||
echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT
|
||||
echo DOCKER_TAG=$([ -n "$TAG" ] && echo $TAG || echo "latest") >> $GITHUB_OUTPUT
|
||||
echo DOCKER_ORG=$([ -n "$ORG" ] && echo "$ORG" || echo "dockersrc") >> $GITHUB_OUTPUT
|
||||
echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}' | sed 's|^docker-||g') >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Set up Docker BuildX
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
registry: https://ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
push: true
|
||||
platforms: |
|
||||
linux/amd64
|
||||
linux/arm64
|
||||
outputs: type=image,name=target,annotation-index.org.opencontainers.image.description=Containerized version of archlinux
|
||||
tags: |
|
||||
ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.DATE_TAG }}
|
||||
ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.DOCKER_TAG }}
|
Reference in New Issue
Block a user