Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

added gpu stats

added gpu stats #24

Workflow file for this run

name: "Publish prem docker image"
on:
push:
tags:
- "*"
jobs:
push:
runs-on: ubuntu-latest
env:
DOCKER_CLI_EXPERIMENTAL: "enabled"
steps:
- uses: actions/checkout@v3
- name: tag
id: next_tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
with:
install: true
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & push prem
run: >-
docker buildx build --push
--file Dockerfile
--tag ghcr.io/premai-io/premd:latest
--tag ghcr.io/premai-io/premd:${{ steps.next_tag.outputs.tag }}
--platform linux/arm64,linux/amd64 .