Added workflows for obagent and ob-configserver (#7) #1
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: release obproxy-ce | |
on: | |
push: | |
tags: | |
- "obproxy-*" | |
env: | |
tagName: ${{ github.ref_name }} | |
jobs: | |
release-obproxy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Log in to Docker hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Set Version variables | |
id: set_version_vars | |
run: echo "version=$(echo $tagName | grep -P '(\d*\.\d*\.\d*\.\d*-\d*)' --only-matching)" >> $GITHUB_OUTPUT | |
- name: Build and push obproxy w/o cache | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./obproxy-ce | |
platforms: linux/amd64,linux/arm64 | |
file: ./obproxy-ce/Dockerfile | |
push: true | |
tags: ${{ vars.DOCKER_PUSH_BASE }}/obproxy-ce:${{ steps.set_version_vars.outputs.version }} | |
build-args: | | |
VERSION=${{ steps.set_version_vars.outputs.version }} |