Skip to content

feat: add actions workflows #1

feat: add actions workflows

feat: add actions workflows #1

Workflow file for this run

name: "Build and deploy"
on:
push:
branches: [main]
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: "emortalmc/actions/java/build@main"
with:
token: "${{ secrets.GITHUB_TOKEN }}"
java-version: "21"
java-distribution: "zulu"
deploy:
needs: "build"
runs-on: "ubuntu-latest"
steps:
- uses: "emortalmc/actions/argo-sync@main"
with:
deployment-name: "minestom-edge"
values-path: "edge/values.yaml"
deployments-repo-token: "${{ secrets.DEPLOYMENTS_REPO_TOKEN }}"