Skip to content

Commit

Permalink
Merge pull request #219 from Bot-detector/develop
Browse files Browse the repository at this point in the history
Update hetzner-prd-workflow.yml
  • Loading branch information
extreme4all authored Aug 15, 2023
2 parents d6cee99 + 494f1ec commit 446b99a
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 56 deletions.
51 changes: 33 additions & 18 deletions .github/workflows/hetzner-prd-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ permissions: write-all
env:
VALUE_FILE: bd-discord-prd/deployment.yaml
REGISTRY: quay.io/bot_detector/bd-discord-bot

ENVIRONMENT: prd

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
# This workflow contains two jobs: build_image and update_image_version
build_image:
# The type of runner that the job will run on
runs-on: [self-hosted, hetzner]
runs-on: [self-hosted, "hetzner"]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -35,36 +35,51 @@ jobs:
id: vars
run: |
echo "GIT_HASH=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_OUTPUT
echo "REGISTRY=$REGISTRY" >> $GITHUB_OUTPUT
echo "VALUE_FILE=$VALUE_FILE" >> $GITHUB_OUTPUT
# Runs a command using the runners shell
- name: docker build
run: docker build . --file Dockerfile --network=host -t "$REGISTRY:${{ steps.vars.outputs.GIT_HASH }}" --target production --build-arg api_port=3000 --build-arg root_path=/
- name: login to registry
run: echo "${{ secrets.QUAY_REGISTERY_PASSWORD }}" | docker login -u="bot_detector+quay_robot" quay.io --password-stdin
- name: Docker Build
run: |
docker build . --file Dockerfile --network=host -t "${REGISTRY}:${{ steps.vars.outputs.GIT_HASH }}"
- name: Login to Quay registry
run: echo "${{ secrets.QUAY_REGISTERY_PASSWORD }}" | docker login -u "bot_detector+quay_robot" quay.io --password-stdin

- name: Tag image
run: |
docker tag "${REGISTRY}:${{ steps.vars.outputs.GIT_HASH }}" "${REGISTRY}:${ENVIRONMENT}"
- name: Docker Push image to Quay registry
run: |
docker push "${REGISTRY}:${{ steps.vars.outputs.GIT_HASH }}"
docker push "${REGISTRY}:${ENVIRONMENT}"
- name: docker push image to registry
run: docker push "$REGISTRY:${{ steps.vars.outputs.GIT_HASH }}"
update_image_version:
runs-on: [self-hosted, "hetzner"]
needs: build_image # This ensures that the build_image job is completed before running this job

steps:
- name: Checkout Target Repository
uses: actions/checkout@v3
with:
repository: Bot-detector/bot-detector-k8s

- name: Set vars
id: vars
run: |
echo "GIT_HASH=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_OUTPUT
- name: Update Image Version
uses: fjogeleit/yaml-update-action@main
with:
repository: Bot-detector/bot-detector-k8s
valueFile: "${{ steps.vars.outputs.VALUE_FILE }}"
token: ${{ secrets.HETZNER_ACTIONS_RUNNER_TOKEN }}
valueFile: ${{ env.VALUE_FILE }}
token: "${{ secrets.HETZNER_ACTIONS_RUNNER_TOKEN }}"
commitChange: true
branch: "${{ steps.vars.outputs.GIT_HASH }}"
title: "${{ env.VALUE_FILE }}_${{ steps.vars.outputs.GIT_HASH }}"
branch: "${{ env.VALUE_FILE }}_${{ steps.vars.outputs.GIT_HASH }}"
targetBranch: develop
masterBranchName: develop
createPR: true
changes: |
{
"spec.template.spec.containers[0].image":"${{ steps.vars.outputs.REGISTRY }}:${{ steps.vars.outputs.GIT_HASH }}"
}
"spec.template.spec.containers[0].image": "${{ env.REGISTRY }}:${{ steps.vars.outputs.GIT_HASH }}"
}
38 changes: 0 additions & 38 deletions .github/workflows/production-workflow.yml

This file was deleted.

0 comments on commit 446b99a

Please sign in to comment.