fix: remove yarn #332
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: ['main', 'dev', 'feature/**'] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
# SETUP | |
- 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 }} | |
- 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: | |
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_ENV" | |
- if: ${{ github.ref_name == 'main' }} | |
run: | | |
[ ! -z "${package_version}" ] || exit 1 | |
# DEPLOY | |
# 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 | |
# DEPLOY normal image | |
- 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}', env.package_version) }},enable=${{ github.ref_name == 'main' }} | |
type=semver,pattern={{major}}.{{minor}},value=${{ format('v{0}', env.package_version) }},enable=${{ github.ref_name == 'main' }} | |
type=semver,pattern={{major}},value=${{ format('v{0}', env.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' && env.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 | |
# DEPLOY GPU supported image | |
- 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}', env.package_version) }},enable=${{ github.ref_name == 'main' }},prefix=nvidia- | |
type=semver,pattern={{major}}.{{minor}},value=${{ format('v{0}', env.package_version) }},enable=${{ github.ref_name == 'main' }},prefix=nvidia- | |
type=semver,pattern={{major}},value=${{ format('v{0}', env.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' && env.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 | |
- 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 | |
- 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 |