An open API service indexing awesome lists of open source software.

https://github.com/dedlyspyder/factorio-version-check

GitHub Action to obtain the current Factorio versions
https://github.com/dedlyspyder/factorio-version-check

action actions factorio factorio-tool

Last synced: 17 days ago
JSON representation

GitHub Action to obtain the current Factorio versions

Awesome Lists containing this project

README

          

# Factorio Version Check
This GitHub Action obtains the current Factorio versions from the [official website](https://factorio.com/api/latest-releases) and emits them as outputs.

## Usage
Example usage to print the current experimental version:
```
jobs:
...
steps:
- id: factorioVersion
uses: DedlySpyder/factorio-version-check@main
- name: Output experimental version
run: echo "${{ steps.factorioVersion.outputs.experimental }}"
```

## Inputs

### `version_type`
The version type to get from the website. This will default to `headless`, which should match the latest version that players have.

Valid Values:
* `alpha`
* `demo`
* `headless`

## Outputs

### `experimental`
Value of the experimental version type.

### `stable`
Value of the stable version type.