.gitea/workflows/linux_arm64_docker-release.yaml aktualisiert
Some checks failed
Build Docker Linux ARM64 Release / build-docker-linux-arm64-release (push) Failing after 11m22s
Some checks failed
Build Docker Linux ARM64 Release / build-docker-linux-arm64-release (push) Failing after 11m22s
This commit is contained in:
@@ -10,32 +10,36 @@ jobs:
|
|||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: apk add --no-cache git curl wget unzip bash nodejs npm docker
|
run: apk add --no-cache git curl wget unzip bash nodejs npm docker
|
||||||
|
|
||||||
|
- name: Clone the repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Login to own image registry
|
- name: Login to own image registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: https://192.168.178.45:3000
|
registry: 192.168.178.45:3000
|
||||||
username: ${{ secrets.REGISTRY_USER }}
|
username: ${{ secrets.REGISTRY_USER }}
|
||||||
password: ${{ secrets.REGISTRY_PASSWORD }}
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Setup .NET10
|
- name: Setup .NET10
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3
|
||||||
with:
|
with:
|
||||||
dotnet-version: '10.0.x'
|
dotnet-version: '10.0.x'
|
||||||
|
|
||||||
- name: Clone the repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
#- name: Build Linux ARM64 Docker Image
|
|
||||||
# run: docker build -t gitea.penry.de/couchlog/linux-arm64 .
|
|
||||||
|
|
||||||
- name: Build and Push Image
|
- name: Build and Push Image
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
|
context: .
|
||||||
|
platforms: linux/arm64
|
||||||
push: true
|
push: true
|
||||||
tags: penry/couchlog:latest
|
tags: gitea.penry.de/couchlog/linux-arm64:latest
|
||||||
|
load: true
|
||||||
|
|
||||||
- name: Make Tar from image
|
- name: Make Tar from image
|
||||||
run: docker save -o couchlog-linux-arm64.tar gitea.penry.de/couchlog/linux-arm64
|
run: |
|
||||||
|
docker save -o couchlog-linux-arm64.tar gitea.penry.de/couchlog/linux-arm64:latest
|
||||||
|
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: akkuman/gitea-release-action@v1
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
|||||||
Reference in New Issue
Block a user