update #679
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: "Autobuild Docker Containers" | |
on: | |
push: | |
branches: | |
- main | |
- staging | |
- dev | |
jobs: | |
build_core_image: | |
name: "Build base docker image" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract branch name | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
id: extract_branch | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.docker_username }} | |
password: ${{ secrets.docker_access_token }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build and export | |
uses: docker/build-push-action@v2 | |
with: | |
build-args: | | |
COMMIT_SHA=${{ github.sha }} | |
context: . | |
file: ./dockerfiles/node.Dockerfile | |
tags: ${{ secrets.docker_username }}/monorepo-core:${{ steps.extract_branch.outputs.branch }} | |
push: true | |
platforms: linux/amd64 | |
build_microservices: | |
name: "Build Node Services" | |
runs-on: ubuntu-latest | |
needs: | |
- build_core_image | |
strategy: | |
matrix: | |
directory: | |
- [ discord-bot, ./clients/discord-bot ] | |
- [ web, ./clients/web ] | |
- [ core, ./core ] | |
- [ image-generation-service, ./microservices/image-generation-service ] | |
- [ matchmaking-service, ./microservices/matchmaking-service ] | |
- [ replay-parse-service, ./microservices/replay-parse-service ] | |
- [ server-analytics-service, ./microservices/server-analytics-service ] | |
- [ notification-service, ./microservices/notification-service ] | |
- [ submission-service, ./microservices/submission-service ] | |
- [ image-generation-frontend, ./clients/image-generation-frontend] | |
steps: | |
- name: Extract branch name | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
id: extract_branch | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Check if there are changes in this project | |
uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
base: ${{ github.ref }} | |
list-files: json | |
filters: | | |
baseDockerfileHasChanges: ./dockerfiles/node.Dockerfile | |
projectHasChanges: ${{ matrix.directory[1] }}/** | |
sprocketCommonHasChanges: ./common/** | |
- name: Build project | |
if: steps.changes.outputs.baseDockerfileHasChanges == 'true' || steps.changes.outputs.projectHasChanges == 'true' || steps.changes.outputs.sprocketCommonHasChanges == 'true' | |
uses: ./.github/reusable_workflows/build_container | |
with: | |
build_directory: ${{ matrix.directory[1] }} | |
docker_image: ${{ matrix.directory[0] }} | |
docker_tag: ${{steps.extract_branch.outputs.branch}} | |
docker_username: ${{ secrets.docker_username }} | |
docker_access_token: ${{ secrets.docker_access_token }} | |
discord_webhook: ${{ secrets.discord_webhook }} | |
deploy_via_pulumi: | |
name: "Deploy via Pulumi" | |
runs-on: ubuntu-latest | |
needs: | |
- build_microservices | |
steps: | |
- name: Extract branch name | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
id: extract_branch | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Deploy Sprocket | |
uses: ./.github/reusable_workflows/pulumi_up | |
with: | |
pulumi_cloud_url: ${{ secrets.pulumi_cloud_url }} | |
pulumi_stack_name: ${{ steps.extract_branch.outputs.branch }} | |
pulumi_config_passphrase: ${{ secrets.pulumi_config_passphrase }} | |
pulumi_aws_access_key: ${{ secrets.pulumi_s3_access_key }} | |
pulumi_aws_secret_key: ${{ secrets.pulumi_s3_secret_key }} | |
ssh_user: ${{ secrets.pulumi_ssh_user }} | |
ssh_key: ${{ secrets.pulumi_ssh_key }} | |
manager_node_hostname: ${{ secrets.manager_node_hostname }} | |
tailscale_ephemeral_authkey: ${{ secrets.tailscale_ephemeral_authkey }} | |
infra_deploy_key: ${{ secrets.infra_deploy_key }} |