Skip to content

Publish watcher-app 1.2.0 #20

Publish watcher-app 1.2.0

Publish watcher-app 1.2.0 #20

Workflow file for this run

name: Build and Push Docker Image
on:
release:
types:
- 'published'
jobs:
build:
name: Build and Push Docker Image
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout the Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Move Config Files
run: |
mv docker/nginx.conf ./
mv docker/entrypoint.sh ./
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
# set PLATFORM_LIST as list of platform names separate with comma eg. linux/amd64,linux/arm64,linux/arm/v7
platforms: ${{ vars.PLATFORM_LIST || 'linux/amd64' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: rosen-bridge
password: ${{ secrets.GITHUB_TOKEN }}
- name: Check Tag
id: check-tag
run: |
if [[ ${{ github.ref }} =~ ^refs/tags/watcher-app-* ]]; then
echo "appName=watcher" >> $GITHUB_OUTPUT
elif [[ ${{ github.ref }} =~ ^refs/tags/guard-app-* ]]; then
echo "appName=guard" >> $GITHUB_OUTPUT
fi
- name: Docker Metadata action
uses: docker/metadata-action@v5
if: steps.check-tag.outputs.appName != null
id: meta
with:
images: ghcr.io/rosen-bridge/ui-${{ steps.check-tag.outputs.appName }}
tags: |
type=match,pattern=\d.\d.\d
- name: Build and push
uses: docker/build-push-action@v4
if: steps.check-tag.outputs.appName != null
with:
context: .
platforms: ${{ vars.PLATFORM_LIST || 'linux/amd64' }}
push: true
tags: ${{ steps.meta.outputs.tags }}
target: ${{ steps.check-tag.outputs.appName }}