-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add release workflow for latest oblogproxy-ce (#29)
- Loading branch information
Showing
3 changed files
with
74 additions
and
8 deletions.
There are no files selected for viewing
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
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 }} |
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
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