-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use auto-action for automatic mod deployment
Publish to Factorio Mod Portal
- Loading branch information
1 parent
31213eb
commit 6942e5d
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Publish Factorio Mod | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
publish-mod: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
|
||
- name: Validate Mod | ||
uses: TheBrutalX/factorio-mod-uploader-action@v1 | ||
with: | ||
action: validate | ||
|
||
- name: Create zip | ||
uses: TheBrutalX/factorio-mod-uploader-action@v1 | ||
with: | ||
action: compress | ||
|
||
- name: Upload Mod | ||
uses: TheBrutalX/factorio-mod-uploader-action@v1 | ||
with: | ||
action: upload | ||
factorio-api-key: ${{ secrets.FACTORIO_API_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "Todo-List", | ||
"version": "19.4.0", | ||
"version": "19.6.0", | ||
"title": "✔ Todo List", | ||
"author": "Jason Miles and many others from the community", | ||
"contact": "[email protected]", | ||
|