mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 14:45:42 +03:00
46 lines
1.5 KiB
YAML
46 lines
1.5 KiB
YAML
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-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 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
|