Some checks failed
Build ARM64 Linux / build-arm64 (push) Successful in 5m39s
Build Docker Linux ARM64 / build-docker-linux-arm64 (push) Successful in 6m29s
Build Linux x64 / build-linux-x64 (push) Successful in 5m32s
Build Docker Linux x64 / build-docker-linux-x64 (push) Failing after 40s
Build Windows x64 / build-windows-x64 (push) Successful in 7m17s
Build Docker Linux ARM64 Release / build-docker-linux-arm64-release (release) Failing after 2m32s
32 lines
907 B
YAML
32 lines
907 B
YAML
name: Build Docker Linux ARM64 Release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build-docker-linux-arm64-release:
|
|
runs-on: [self-hosted, linux, arm64, docker]
|
|
steps:
|
|
- name: Install packages
|
|
run: apk add --no-cache git curl wget unzip bash nodejs npm docker
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Build Linux ARM64 Docker Image
|
|
run: docker build -t couchlog-linux-arm64 .
|
|
|
|
- name: Save Docker Image to Tar
|
|
run: docker save -o CouchLog-Linux-ARM64-Docker-Image.tar couchlog-linux-arm64
|
|
|
|
- name: Upload Artifact
|
|
uses: softprops/action-gh-release@v1
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
files: CouchLog-Linux-ARM64-Docker-Image.tar
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |