Workflow file for this run
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: Build Docker Images, Push to Registry, and Deploy | |
on: | |
push | |
# push: | |
# branches: | |
# - main | |
# release: | |
# types: [published] | |
jobs: | |
setup-build: | |
runs-on: ubuntu-latest | |
outputs: | |
date: ${{ steps.get-date.outputs.date }} | |
hash: ${{ steps.get-commit.outputs.hash }} | |
tag: ${{ steps.get-tag.outputs.tag }} | |
steps: | |
- name: Check out the private Ops repo | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
submodules: "recursive" | |
- name: Generate date | |
id: get-date | |
run: echo "date=$(date +%Y-%m-%d-%Hh%Mm%Ss)" >> $GITHUB_OUTPUT | |
- name: Get short commit hash | |
id: get-commit | |
run: echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: Remove 'v' prefix from release tag | |
id: get-tag | |
run: echo "tag=$(echo ${{ github.event.release.tag_name }} | sed 's/^v//')" >> $GITHUB_OUTPUT | |
build-and-push-amd64: | |
needs: setup-build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
service: [backend, frontend, radar] | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to private Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }} | |
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }} | |
- name: Build and push ${{ matrix.service }} (amd64) | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./ops/${{ matrix.service }}.Dockerfile | |
push: true | |
tags: | | |
lunary/${{ matrix.service }}:latest | |
lunary/${{ matrix.service }}:rev-${{ needs.setup-build.outputs.date }}-${{ needs.setup-build.outputs.hash }} | |
${{ github.event.release.tag_name != '' && format('lunary/{0}:{1}', matrix.service, needs.setup-build.outputs.tag) || '' }} | |
platforms: linux/amd64 | |
deploy: | |
needs: build-and-push-amd64 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to Production | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.PRODUCTION_IP_ADDRESS }} | |
username: root | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
port: ${{ secrets.PRODUCTION_PORT }} | |
script: | | |
docker image prune -f | |
cd /opt/lunary | |
docker compose pull | |
docker compose down | |
docker compose up -d | |
build-lunary-ee-and-frontend: | |
needs: setup-build | |
strategy: | |
matrix: | |
service: [frontend, lunary-ee] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to private Docker Registry | |
uses: docker/login-action@v3 |