2023-09-19 19:12:38 +02:00
name : Build
on :
2024-04-19 05:43:39 +02:00
schedule :
- cron : "0 0 * * 1"
2023-09-19 19:12:38 +02:00
push :
2023-09-19 19:15:47 +02:00
tags :
2024-04-19 05:43:39 +02:00
- 'manual_build'
2023-09-19 19:12:38 +02:00
jobs :
2024-04-28 00:36:47 +02:00
build-latest :
2024-04-19 05:43:39 +02:00
runs-on : ubuntu-latest
2023-09-19 19:12:38 +02:00
steps :
- name : Extract Version Tag
id : extract-version
2024-04-19 05:43:39 +02:00
run : |
export DIGEST=$(curl -s "https://registry.hub.docker.com/v2/repositories/library/nextcloud/tags/?page_size=100" | jq -r '.results[] | select(.name=="latest") .digest')
export VERSION=$(curl -s "https://registry.hub.docker.com/v2/repositories/library/nextcloud/tags/?page_size=1000" | jq -r ".results[] | select(.name | test(\"^([0-9]+\\\.)+([0-9]+\\\.)+[0-9]+$\")) | select(.digest==\"$DIGEST\").name")
echo "Latest version: $VERSION"
echo "version=${VERSION}" >> $GITHUB_OUTPUT
2023-09-19 19:12:38 +02:00
shell : bash
2024-04-28 04:10:19 +02:00
# - name: Check if the image was already built
# id: check-build-status
# run: |
# if curl --silent -f -lSL "https://hub.docker.com/v2/repositories/jiriks74/nextcloud-extended/tags/$(echo ${{steps.extract-version.outputs.version}})" 2> /dev/null; then echo "Built already!" && exit 1; else echo "This version isn't built yet."; fi
2024-04-19 05:43:39 +02:00
- name : Update repositories
run : sudo apt update
- name : Install Docker
uses : awalsh128/cache-apt-pkgs-action@latest
with :
packages : docker.io
2023-09-19 21:53:49 +02:00
- name : Login to DockerHub
2024-04-19 05:43:39 +02:00
uses : docker/login-action@v3
2023-09-19 21:53:49 +02:00
with :
username : ${{ secrets.DOCKERHUB_USERNAME }}
password : ${{ secrets.DOCKERHUB_TOKEN }}
2023-09-19 19:12:38 +02:00
- name : Set up QEMU
2024-04-19 05:43:39 +02:00
uses : docker/setup-qemu-action@v3
2023-09-19 19:12:38 +02:00
- name : Set up Docker Buildx
2024-04-19 05:43:39 +02:00
uses : docker/setup-buildx-action@v3
2023-09-19 19:12:38 +02:00
with :
2024-04-19 05:43:39 +02:00
# driver-opts: network=host
2023-09-19 19:12:38 +02:00
platforms : linux/amd64,linux/arm64
2024-04-19 05:43:39 +02:00
- name : Checkout
uses : actions/checkout@v4
2023-09-19 19:12:38 +02:00
- name : Build image
uses : docker/build-push-action@v2
with :
push : true
file : ./Dockerfile
2024-04-29 02:58:38 +02:00
context : .
build-args : NEXTCLOUD_VERSION=${{ steps.extract-version.outputs.version }}
platforms : linux/amd64,linux/arm64
tags : jiriks74/nextcloud-extended:${{ steps.extract-version.outputs.version }},jiriks74/nextcloud-extended:latest
2023-09-19 19:12:38 +02:00