EpicMorg Advanced Images #290
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: EpicMorg Advanced Images | |
on: | |
# push: | |
# branches: | |
# - 'master' | |
schedule: | |
- cron: '0 02 * * 2,4,6' | |
jobs: | |
build-images: | |
name: EpicMorg Advanced Images | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- 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: Install requirements.txt | |
run: make pip | |
- name: "Build and Deploy Advanced Mattermost Images:" | |
run: cd linux/advanced/mattermost && pwd && make build && make deploy | |
- name: "Build and Deploy Advanced Teamcity Server Image:" | |
run: cd linux/advanced/teamcity/server && pwd && make build && make deploy | |
################################################################################## | |
- name: Cleanup | |
run: make docker-clean | |
################################################################################## |