-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fe8e144
Showing
10 changed files
with
3,042 additions
and
0 deletions.
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,30 @@ | ||
name: Release Pyromod | ||
|
||
on: | ||
push: | ||
tags: | ||
- v** | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build pyromod | ||
run: | | ||
MOD_VERSION="$(jq .version mod.json | tr -d \")" | ||
MOD_NAME="$(jq .name mod.json | tr -d \")" | ||
zip -r ${HOME}/${MOD_NAME}-${MOD_VERSION}.zip . -x .git\* | ||
mv ${HOME}/${MOD_NAME}*.zip $PWD | ||
cp ${MOD_NAME}-${MOD_VERSION}.zip ${MOD_NAME}-${MOD_VERSION}.pyromod | ||
- name: Release PyroMod | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
allowUpdates: True | ||
prerelease: False | ||
artifacts: "no-gather*.*" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
omitNameDuringUpdate: True | ||
omitBodyDuringUpdate: True | ||
- name: remove artifacts | ||
run: rm ${{ env.MOD_NAME }}*.* |
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,4 @@ | ||
2022-09-06 | ||
|
||
* first release | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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,11 @@ | ||
# no-gather | ||
|
||
Resources accumulate over time, women are champions, and on random | ||
maps players start with about 50 infantry. | ||
|
||
(a mod for [0ad](https://play0ad.com/)) | ||
|
||
## Issues and discussions | ||
|
||
This can be done from the website at | ||
https://github.com/0ad-matters/no-gather |
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,12 @@ | ||
{ | ||
"name": "no-gather", | ||
"version": "0.26.0", | ||
"label": "no-gather", | ||
"description": "Resources accumulate over time, women are champions, and on random maps players start with about 50 infantry", | ||
"dependencies": [ | ||
"0ad=0.0.26" | ||
], | ||
"url": "https://github.com/0ad-matters/no-gather", | ||
"author_name": "Andy Alt", | ||
"author_profile": "https://github.com/andy5995" | ||
} |
Oops, something went wrong.