Skip to content

harrymkt/setup-nvgt

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setup NVGT Action

This action is useful if you want to integrate NVGT scripting language into your GitHub action (GA) workflow.

Supported OS

The action supports the following operating systems:

  • windows-latest: Windows
  • ubuntu-latest: Linux
  • macos-latest: Mac OS

Usage

name: Build NVGT
on: push
jobs:
  build:
    runs-on: windows-latest
    steps:
      - uses: actions/checkout@v4
      - name: Setup NVGT
        id: nvgt
        uses: harrymkt/setup-nvgt@main
        with:
          latest: true
      - name: Build
        # Your own build here. Eg:
        run: nvgt -c your_script.nvgt

Inputs

Provide variables with the with parameter:

  • latest(bool) optional: Should the action fetch the latest release as possible? Defaults to true.
  • version(string) optional: The NVGT version you want to install if not latest. Eg, 0.89.1_beta. Defaults to none. This input will be ignored if either latest or dev is true.
  • dev(bool) optional: Toggles whether it should download latest development version.

About

GitHub action to setup NVGT language

Resources

Stars

2 stars

Watchers

1 watching

Forks

Packages

 
 
 

Contributors