EpicMorg EcoSystem Atlassian Main Images #289
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 EcoSystem Atlassian Main Images | |
on: | |
# push: | |
# branches: | |
# - 'master' | |
schedule: | |
- cron: '5 5 * * 1,3,5' | |
jobs: | |
build-10-images: | |
name: Build EpicMorg Atlassian Main 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 Atlassian Bitbucket Image:" | |
run: cd linux/ecosystem/atlassian/bitbucket/latest && pwd && make build && make deploy | |
- name: "Build and Deploy Atlassian Confluence Image:" | |
run: cd linux/ecosystem/atlassian/confluence/latest && pwd && make build && make deploy | |
# - name: "Build and Deploy Atlassian Crucible Image:" | |
# run: cd linux/ecosystem/atlassian/crucible/latest && pwd && make build && make deploy | |
# - name: "Build and Deploy Atlassian Fisheye Image:" | |
# run: cd linux/ecosystem/atlassian/fisheye/latest && pwd && make build && make deploy | |
- name: "Build and Deploy Atlassian Fisheye + Crucible Image:" | |
run: cd linux/ecosystem/atlassian/fisheye-crucible/latest && pwd && make build && make deploy | |
- name: "Build and Deploy Atlassian Jira Image:" | |
run: cd linux/ecosystem/atlassian/jira/latest && pwd && make build && make deploy | |
################################################################################## | |
- name: Cleanup | |
run: make docker-clean |