This commit is contained in:
stam 2025-04-22 22:08:00 +03:00
parent 8ccbe176da
commit db2bd2b2d9
Signed by: stam
GPG Key ID: 4F57E51F9C45F8CD
4 changed files with 15 additions and 3 deletions

View File

@ -191,6 +191,18 @@ jobs:
- name: Log into docker registry - name: Log into docker registry
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Log into Quay.IO registry
run: echo "${{ secrets.QUAY_SERVER_KEY }}" | docker login -u "${{ secrets.QUAY_SERVER_LOGIN }}" --password-stdin "${{ secrets.QUAY_SERVER_URL }}"
- name: Check buildah
run: buildah --version
- name: Test Make
run: make
- name: Install requirements.txt
run: make pip
- name: Build and Deploy JDK ${{ matrix.version }} - name: Build and Deploy JDK ${{ matrix.version }}
run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk${{ matrix.version }} && pwd && make build && make deploy run: cd linux/ecosystem/epicmorg/debian/11-bullseye/jdk/jdk${{ matrix.version }} && pwd && make build && make deploy

View File

@ -89,7 +89,7 @@ jobs:
run: make run: make
- name: Install requirements.txt - name: Install requirements.txt
run: make pipin run: make pip
- name: Build and Deploy Node.js ${{ matrix.type || matrix.version }} - name: Build and Deploy Node.js ${{ matrix.type || matrix.version }}
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/${{ matrix.path }} && pwd && make build && make deploy run: cd linux/ecosystem/epicmorg/debian/12-bookworm/${{ matrix.path }} && pwd && make build && make deploy

View File

@ -89,7 +89,7 @@ jobs:
run: make run: make
- name: Install requirements.txt - name: Install requirements.txt
run: make pipin run: make pip
- name: Build and Deploy Node.js ${{ matrix.type || matrix.version }} - name: Build and Deploy Node.js ${{ matrix.type || matrix.version }}
run: cd linux/ecosystem/epicmorg/debian/13-trixie/${{ matrix.path }} && pwd && make build && make deploy run: cd linux/ecosystem/epicmorg/debian/13-trixie/${{ matrix.path }} && pwd && make build && make deploy

View File

@ -89,7 +89,7 @@ jobs:
run: make run: make
- name: Install requirements.txt - name: Install requirements.txt
run: make pipin run: make pip
- name: Build and Deploy Node.js ${{ matrix.type || matrix.version }} - name: Build and Deploy Node.js ${{ matrix.type || matrix.version }}
run: cd linux/ecosystem/epicmorg/debian/sid/${{ matrix.path }} && pwd && make build && make deploy run: cd linux/ecosystem/epicmorg/debian/sid/${{ matrix.path }} && pwd && make build && make deploy