Skip to content

docs: change homarr link (#1062) #347

docs: change homarr link (#1062)

docs: change homarr link (#1062) #347

Workflow file for this run

name: Deploy
on:
push:
branches: ['main', 'dev', 'feature/**']
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
version:
runs-on: ubuntu-latest
outputs:
package_version: ${{ steps.version.outputs.package_version }}
steps:
# SETUP
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'yarn'
- if: ${{ github.ref_name == 'main' }}
run: yarn --immutable --immutable-cache
- if: ${{ github.ref_name == 'main' }}
id: version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "package_version=$(yarn semantic-release -d | sed -n 's/.*next release version is \([0-9]\+\.[0-9]\+\.[0-9]\+\)/\1/p')" >> "$GITHUB_OUTPUT"
- if: ${{ github.ref_name == 'main' }}
run: |
[ ! -z "${{ steps.version.outputs.package_version }}" ] || exit 1
build:
runs-on: ubuntu-latest
needs: version
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/login-action@v2
with:
username: mauricenino
password: ${{ secrets.DOCKERHUB_TOKEN }}
# fix oom issues (https://github.com/orgs/community/discussions/26351)
- run: |
df -h
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
df -h
- uses: docker/metadata-action@v4
id: meta
with:
images: |
ghcr.io/mauricenino/dashdot
mauricenino/dashdot
labels: |
org.opencontainers.image.title="dash."
org.opencontainers.image.description="dash. - a modern server dashboard"
org.opencontainers.image.authors="MauriceNino <mauriceprivat98@gmail.com>"
org.opencontainers.image.url=https://github.com/MauriceNino/dashdot
org.opencontainers.image.source=https://github.com/MauriceNino/dashdot
org.opencontainers.image.licenses=MIT
tags: |
type=semver,pattern={{version}},value=${{ format('v{0}', needs.version.outputs.package_version) }},enable=${{ github.ref_name == 'main' }}
type=semver,pattern={{major}}.{{minor}},value=${{ format('v{0}', needs.version.outputs.package_version) }},enable=${{ github.ref_name == 'main' }}
type=semver,pattern={{major}},value=${{ format('v{0}', needs.version.outputs.package_version) }},enable=${{ github.ref_name == 'main' }}
type=ref,event=branch,enable=${{ github.ref_name != 'main' }}
- uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64/v8
target: prod
push: true
build-args: |
VERSION=${{ github.ref_name == 'main' && needs.version.outputs.package_version || format('0.0.0-{0}', github.ref_name) }}
BUILDHASH=${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
build_nvidia:
runs-on: ubuntu-latest
needs: version
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/login-action@v2
with:
username: mauricenino
password: ${{ secrets.DOCKERHUB_TOKEN }}
# fix oom issues (https://github.com/orgs/community/discussions/26351)
- run: |
df -h
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
df -h
- uses: docker/metadata-action@v4
id: meta_nvidia
with:
flavor: |
latest=false
images: |
ghcr.io/mauricenino/dashdot
mauricenino/dashdot
labels: |
org.opencontainers.image.title="dash."
org.opencontainers.image.description="dash. - a modern server dashboard"
org.opencontainers.image.authors="MauriceNino <mauriceprivat98@gmail.com>"
org.opencontainers.image.url=https://github.com/MauriceNino/dashdot
org.opencontainers.image.source=https://github.com/MauriceNino/dashdot
org.opencontainers.image.licenses=MIT
tags: |
type=semver,pattern={{version}},value=${{ format('v{0}', needs.version.outputs.package_version) }},enable=${{ github.ref_name == 'main' }},prefix=nvidia-
type=semver,pattern={{major}}.{{minor}},value=${{ format('v{0}', needs.version.outputs.package_version) }},enable=${{ github.ref_name == 'main' }},prefix=nvidia-
type=semver,pattern={{major}},value=${{ format('v{0}', needs.version.outputs.package_version) }},enable=${{ github.ref_name == 'main' }},prefix=nvidia-
type=ref,event=branch,enable=${{ github.ref_name != 'main' }},prefix=nvidia-
type=raw,value=nvidia,enable=${{ github.ref_name == 'main' }}
- uses: docker/build-push-action@v4
with:
context: .
file: Dockerfile.nvidia
platforms: linux/amd64,linux/arm64/v8
target: prod
push: true
build-args: |
VERSION=${{ github.ref_name == 'main' && needs.version.outputs.package_version || format('0.0.0-{0}', github.ref_name) }}
BUILDHASH=${{ github.sha }}
labels: ${{ steps.meta_nvidia.outputs.labels }}
tags: ${{ steps.meta_nvidia.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
# Update deployment on rex
release:
runs-on: ubuntu-latest
needs: [build, build_nvidia]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'yarn'
- if: ${{ github.ref_name == 'main' }}
run: yarn --immutable --immutable-cache
- if: ${{ github.ref_name == 'main' }}
env:
GIT_USER: github-actions
GIT_AUTHOR_NAME: github-actions
GIT_COMMITTER_NAME: github-actions
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com
GIT_PASS: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn semantic-release
yarn nx build docs
yarn nx deploy docs
# Update deployment on rex
rex:
runs-on: ubuntu-latest
needs: build
steps:
- if: ${{ github.ref_name == 'main' }}
run: curl --get --data-urlencode "service=dashdot" --data-urlencode "image=mauricenino/dashdot:latest" --data-urlencode "secret=${{ secrets.REX_TOKEN }}" https://rex.mauz.dev/deploy
- if: ${{ github.ref_name == 'dev' }}
run: curl --get --data-urlencode "service=dashdot" --data-urlencode "image=mauricenino/dashdot:dev" --data-urlencode "secret=${{ secrets.REX_TOKEN }}" https://rex.mauz.dev/deploy