Skip to content

Commit

Permalink
add github actions workflow to build image
Browse files Browse the repository at this point in the history
  • Loading branch information
Rost-is-love committed May 9, 2024
1 parent e4a9ea5 commit d25bd4c
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ips-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: IPS app image

env:
REGISTRY: ghcr.io
IMAGE_NAME: ips-aidbox-app

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build-image:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3

- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push ui image
uses: docker/build-push-action@v5
with:
push: true
context: ./ips_ig
file: ./ips_ig/Dockerfile.dev
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit d25bd4c

Please sign in to comment.