-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (36 loc) · 1.05 KB
/
docker_aarch64.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Evolinx DOCKER ( AARCH64 )
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: prepare build env
run: |
# Basics
mkdir -p ~/EVOLINX
cd ~/EVOLINX
##
# NOTE: Will be used for
# imgsys - builds docker images + can push the built images
# developing - Includes all docker image files for build
##
git clone https://git.martinvlba.eu/Evolinx/build_docker_imgsys.git imgsys
git clone https://git.martinvlba.eu/Evolinx/build_docker_developing developing
- name: Build and install docker image
run: |
cd ~/EVOLINX/imgsys
# Start the scriptlet
./build.sh --arm64-image
- name: Login to docker.io
uses: docker/login-action@v1
with:
username: hilledkinged
password: ${{ secrets.DOCKER_TOKEN }}
- name: Push docker image
run: |
docker image push hilledkinged/evolinx:aarch64