ci: migrate github bot from zenhub to github project #8
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build-github-bot-image: | |
name: Build github-bot image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# longhornio/github-bot image | |
- name: docker-dry-run | |
uses: docker/build-push-action@v5 | |
with: | |
context: github-bot | |
push: false | |
platforms: linux/amd64 | |
tags: longhornio/github-bot:master | |
file: github-bot/Dockerfile | |
build-args: | | |
ARCH=amd64 | |
- name: Login to Docker Hub | |
if: ${{ startsWith(github.ref, 'refs/heads/') }} | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: docker-publish | |
if: ${{ startsWith(github.ref, 'refs/heads/') }} | |
uses: docker/build-push-action@v5 | |
with: | |
context: github-bot | |
push: true | |
platforms: linux/amd64 | |
tags: longhornio/github-bot:master | |
file: github-bot/Dockerfile | |
build-args: | | |
ARCH=amd64 | |
build-github-runner-authorizer-image: | |
name: Build github-runner-authorizer image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# longhornio/github-runner-authorizer image | |
- name: docker-dry-run | |
uses: docker/build-push-action@v5 | |
with: | |
context: github-runner-authorizer | |
push: false | |
platforms: linux/amd64 | |
tags: longhornio/github-runner-authorizer:master | |
file: github-runner-authorizer/Dockerfile | |
build-args: | | |
ARCH=amd64 | |
- name: Login to Docker Hub | |
if: ${{ startsWith(github.ref, 'refs/heads/') }} | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: docker-publish | |
if: ${{ startsWith(github.ref, 'refs/heads/') }} | |
uses: docker/build-push-action@v5 | |
with: | |
context: github-runner-authorizer | |
push: true | |
platforms: linux/amd64 | |
tags: longhornio/github-runner-authorizer:master | |
file: github-runner-authorizer/Dockerfile | |
build-args: | | |
ARCH=amd64 | |
deploy-longhorn-bot-images: | |
name: Deploy Longhorn bot images | |
if: ${{ startsWith(github.ref, 'refs/heads/') }} | |
runs-on: ubuntu-latest | |
needs: | |
- build-github-bot-image | |
- build-github-runner-authorizer-image | |
steps: | |
- name: Rollout restart github-bot | |
uses: actions-hub/[email protected] | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
with: | |
args: rollout restart deployment -n github-bot github-bot | |
- name: Rollout restart github-runner github-runner-authorizer | |
uses: actions-hub/[email protected] | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
with: | |
args: rollout restart deployment -n github-runner github-runner-authorizer |