Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.09 KB

readme.md

File metadata and controls

35 lines (28 loc) · 1.09 KB

Nomad Levant Deploy

Based off of qazz92/nomad-deploy-action

This does deployments using Levant and Nomad.

Straightforward checkout then publish

name: Deploy Nomad Job
on: [push]
jobs:
  deploy:
    name: Nomad Deploy
    runs-on: ubuntu-latest
    steps:
      - name: Checkout the code
        uses: actions/checkout@v1

      - name: Deploy with Nomad
        uses: getparthenon/levant-deploy@main
        with:
          token: ${{ secrets.NOMAD_TOKEN }}
          address: ${{ secrets.NOMAD_ADDR }}
          job: path/to/your/nomad/job/file
          config: path/to/your/levant/config/file

Parameters