Skip to content

Commit

Permalink
feat(ci): add publish release image workflow (#19)
Browse files Browse the repository at this point in the history
Signed-off-by: Radek Ježek <radek.jezek@ibm.com>
  • Loading branch information
jezekra1 authored Dec 13, 2024
1 parent 62c7539 commit 7889149
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/publish-release-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: build and publish release image

on:
# On release events (also when a published release is converted from/to prerelease), push all patterns
release:
types: [released, prereleased]

jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

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

- name: Login to ICR
uses: docker/login-action@v3
with:
registry: ${{ vars.DOCKER_REGISTRY }}
username: ${{ vars.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Extract version from tag
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT

- name: Build and push bee-usercontent-site local image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
build-args: |
VITE_ALLOWED_FRAME_ANCESTORS=http://localhost:3000
tags: |
${{ vars.DOCKER_REGISTRY }}/i-am-bee/bee-usercontent-site-local:latest
${{ vars.DOCKER_REGISTRY }}/i-am-bee/bee-usercontent-site-local:${{ steps.get_version.outputs.VERSION }}
cache-from: type=registry,ref=${{ vars.DOCKER_REGISTRY }}/i-am-bee/bee-usercontent-site-local:buildcache
cache-to: type=registry,ref=${{ vars.DOCKER_REGISTRY }}/i-am-bee/bee-usercontent-site-local:buildcache,mode=max

0 comments on commit 7889149

Please sign in to comment.