This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
Add item length limit to autocomplete #112
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: Vivy | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'gradle/libs.versions.toml' | |
- 'common/**' | |
- 'bot/vivy/**' | |
- 'library/database/**' | |
- 'extension/about/**' | |
- 'extension/music/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: adopt | |
java-version: 19 | |
- name: Build Distribution | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: wrapper | |
arguments: "bot:vivy:installDist --refresh-dependencies" | |
- name: Upload Distribution | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vivy | |
path: ./dist/vivy | |
docker: | |
name: Push to Docker | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download Distribution | |
uses: actions/download-artifact@v3 | |
with: | |
name: vivy | |
path: ./dist/vivy | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
file: ./docker/vivy/Dockerfile | |
context: . | |
push: true | |
platforms: 'linux/amd64,linux/arm64' | |
tags: gavenda/vivy:latest | |
deploy: | |
name: Deploy | |
needs: docker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Restart Discord Bot | |
uses: garygrossgarten/github-action-ssh@v0.6.3 | |
with: | |
command: cd studio_helper && docker-compose pull && docker-compose up -d | |
host: ${{secrets.HOST}} | |
username: ${{secrets.USER}} | |
port: ${{secrets.PORT}} | |
privateKey: ${{secrets.KEY}} |