Skip to content

Commit

Permalink
add release workflow for latest oblogproxy-ce (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
whhe authored Jun 26, 2024
1 parent 50c9550 commit 0edcde4
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 8 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/release-latest-oblogproxy-ce.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: release latest oblogproxy-ce

on:
push:
tags:
- "latest-oblogproxy-ce-*"

env:
tagName: ${{ github.ref_name }}

jobs:
release-latest-oblogproxy-ce:
runs-on: ubuntu-latest
steps:
- name: Log in to Docker hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Log in to Quay io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_IO_USERNAME }}
password: ${{ secrets.QUAY_IO_PASSWORD }}

- name: Log in to Ghcr io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout repository
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Set Version variables
id: set_version_vars
run: echo "version=$(echo $tagName | grep -P '(\d*\.\d*\.\d*-\d{18})' --only-matching)" >> $GITHUB_OUTPUT

- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./oblogproxy-ce
platforms: linux/amd64,linux/arm64
file: ./oblogproxy-ce/Dockerfile
push: true
tags: |
${{ vars.DOCKER_PUSH_BASE }}/oblogproxy-ce:${{ steps.set_version_vars.outputs.version }}
quay.io/${{ vars.QUAY_IO_PUSH_BASE }}/oblogproxy-ce:${{ steps.set_version_vars.outputs.version }}
ghcr.io/${{ github.repository_owner }}/oblogproxy-ce:${{ steps.set_version_vars.outputs.version }}
${{ vars.DOCKER_PUSH_BASE }}/oblogproxy-ce:latest
quay.io/${{ vars.QUAY_IO_PUSH_BASE }}/oblogproxy-ce:latest
ghcr.io/${{ github.repository_owner }}/oblogproxy-ce:latest
build-args: |
VERSION=${{ steps.set_version_vars.outputs.version }}
12 changes: 7 additions & 5 deletions .github/workflows/test-oblogproxy-ce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ name: test oblogproxy-ce
on:
pull_request:
paths:
- '!**/*.md'
- '.github/workflows/**-oblogproxy-ce.yml'
- '.github/workflows/**-oceanbase-ce.yml'
- 'oblogproxy-ce/**'
- 'oceanbase-ce/**'
- 'test/**'
- '.github/workflows/build-oceanbase-ce.yml'
- 'oblogproxy-ce/Dockerfile'
- 'oblogproxy-ce/**.sh'
- 'oceanbase-ce/Dockerfile'
- 'oceanbase-ce/**.sh'
- 'oceanbase-ce/**.yaml'
- 'test/**/LogProxyCETest.java'

concurrency:
group: test-oblogproxy-ce-${{ github.event.pull_request.number || github.ref }}
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test-oceanbase-ce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ name: test oceanbase-ce
on:
pull_request:
paths:
- '!**/*.md'
- '.github/workflows/**-oceanbase-ce.yml'
- 'oceanbase-ce/**'
- 'test/**'
- 'oceanbase-ce/Dockerfile'
- 'oceanbase-ce/**.sh'
- 'oceanbase-ce/**.yaml'
- 'test/**/OceanBaseCETest.java'

concurrency:
group: test-oceanbase-ce-${{ github.event.pull_request.number || github.ref }}
Expand Down

0 comments on commit 0edcde4

Please sign in to comment.