docker-scripts/.github/workflows/epicmorg.base.images.postgresql.testing.yml
2022-11-13 01:40:09 +03:00

31 lines
753 B
YAML

name: EpicMorg EcoSystem PostgreSQL 16 Test Image
on:
# push:
# branches:
# - 'master'
schedule:
- cron: '5 5 * * 1,3,5'
jobs:
build-pgsql16-images:
name: Build EpicMorg PostgreSQL 16 Test Image
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 PostgreSQL 16 Image:"
run: cd linux/ecosystem/postgres/16 && pwd && make build && make deploy
##################################################################################
- name: Cleanup
run: make docker-clean