Some checks failed
Build Docker Linux ARM64 Release / build-docker-linux-arm64-release (push) Failing after 10m59s
Build ARM64 Linux / build-arm64 (push) Has been cancelled
Build Docker Linux ARM64 / build-docker-linux-arm64 (push) Has been cancelled
Build Linux x64 / build-linux-x64 (push) Has been cancelled
Build Windows x64 / build-windows-x64 (push) Has been cancelled
37 lines
983 B
YAML
37 lines
983 B
YAML
name: Build Docker Linux ARM64 Release
|
|
run-name: Release-Docker-Linux-ARM64
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-docker-linux-arm64-release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Updating apt-get
|
|
run: apt-get update -y
|
|
|
|
- name: Install packages
|
|
run: apt-get install git curl wget unzip bash nodejs npm docker.io -y
|
|
|
|
#- name: Login container registry
|
|
# run: docker login gitea:3000
|
|
|
|
- name: Setup .NET10
|
|
uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: '10.0.x'
|
|
|
|
- name: Clone the repository t
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build Linux ARM64 Docker Image
|
|
run: docker build -t gitea.penry.de/couchlog/linux-arm64 .
|
|
|
|
- name: Make Tar from image
|
|
run: docker save -o couchlog-linux-arm64.tar gitea.penry.de/couchlog/linux-arm64
|
|
|
|
- name: Release
|
|
uses: akkuman/gitea-release-action@v1
|
|
with:
|
|
files: |-
|
|
couchlog-linux-arm64.tar |