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
- Host: GitHub
- URL: https://github.com/dedlyspyder/factorio-version-check
- Owner: DedlySpyder
- License: mit
- Created: 2022-12-31T20:42:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-02T03:22:25.000Z (over 3 years ago)
- Last Synced: 2026-04-12T19:25:33.882Z (about 2 months ago)
- Topics: action, actions, factorio, factorio-tool
- Language: JavaScript
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.