Skip to content

Factorio Mod template with automated changelog generation, packaging and releasing

License

Notifications You must be signed in to change notification settings

fgardt/factorio-mod-template

Repository files navigation

Release

factorio-mod-template

A small Factorio Mod template which also contains GitHub Actions for automatic changelog generation, packaging and releasing to the Factorio Mod Portal

How it works

This template uses semantic-release to automate the changelog generation aswell as packaging and releasing the mod.
Changelog generation is done with this preset while packaging and releasing is done with this plugin.
Additionally the GitHub Action will also create a release in your repository on GitHub itself.

Once you push new commits to the main branch the release action will trigger.
First it scans all your commit messages to figure out what the new version should be and what to put into the changelog.
To make this possible you need to use conventional commits.

Commit type Changelog section
feat or feature Features
fix Bugfixes
perf or performance Optimizations
compat or compatibility Compatibility
balance Balancing
graphics Graphics
sound Sounds
gui Gui
info Info
locale Locale
translate Translation
control Control
other Changes

Because a push to the main branch triggers the release action it is recommended to work on a separate branch until your work is done and then merge that branch into main to release it.
Or you just work locally and if you want to release you push your changes to main, up to you how you want to do it ;)

How to use

Repository setup

Click the Use this template button and create your own repository.

Once you have your new repository you need to add a Factorio token as a GitHub Actions secret so that the mod releasing can work.
To get the token go to Factorio's website and login with your account.
Then you need to go to your profile and generate a new API key.
The API key needs Upload Mods, Publish Mods and Edit Mods permissions. Copy the generated key.

Now you need to go to your repository settings > Secrets and variables > Actions and add a new Repository secret called FACTORIO_TOKEN with your copied key as the secret.

Mod setup

  • Swap out the LICENSE to your own liking (especially change out my name for yours)
  • Populate the info.json file with correct values (the version field gets updated automatically)
  • Add the corresponding text into locale.cfg
  • Add a thumbnail.png to the root of the repository (ideally 144x144px)

Misc

How the packaging works

The semantic-release-factorio plugin uses the git archive command to package the mod.
That way you can specify what folders / files to exclude from your packaged mod by specifying them in .gitattributes.

If you want to locally test packaging of your mod you can run the following command:

git archive --format zip --prefix [YOUR-MOD-NAME]/ --worktree-attributes --output [YOUR-MOD-NAME]_[VERSION].zip HEAD

Need help?

Checkout the official Factorio Discord and check the pins in the #mod-making channel.
There is also the Lua API documentation and the modding section in the wiki.

About

Factorio Mod template with automated changelog generation, packaging and releasing

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published