mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-27 23:25:43 +03:00
STAM
61938a770d
bump versions updated `LazyGIT` to `0.40.2` converterd some envs to args sources.list fix + nextcloud updates python fix java fixes python fix java fixes bitbucket full images
58 lines
2.2 KiB
YAML
58 lines
2.2 KiB
YAML
name: EpicMorg Debian 12 Images
|
|
|
|
on:
|
|
# push:
|
|
# branches:
|
|
# - 'master'
|
|
schedule:
|
|
- cron: '0 0 * * 1,3,5'
|
|
|
|
jobs:
|
|
|
|
build-10-images:
|
|
name: Build EpicMorg Debian 12 Images
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Log into registry
|
|
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
|
|
|
|
- name: Test Make
|
|
run: make
|
|
|
|
- name: "Build and Deploy Debian 12 slim Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/slim && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 12 main Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/main && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 12 develop Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/develop && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 12 jdk6 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/jdk6 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 12 jdk7 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/jdk7 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 12 jdk8 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/jdk8 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 12 jdk11 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/jdk11 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 12 jdk17 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/jdk17 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 12 jdk20 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/jdk20 && pwd && make build && make deploy
|
|
|
|
- name: "Build and Deploy Debian 12 jdk21 Image:"
|
|
run: cd linux/ecosystem/epicmorg/debian/12-bookworm/jdk21 && pwd && make build && make deploy
|
|
|
|
##################################################################################
|
|
|
|
- name: Cleanup
|
|
run: make docker-clean
|