Skip to content

Commit

Permalink
initial commit; release v0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Sep 6, 2022
0 parents commit fe8e144
Show file tree
Hide file tree
Showing 10 changed files with 3,042 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release_pyromod.yml
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 }}*.*
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
2022-09-06

* first release

504 changes: 504 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions README.md
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
12 changes: 12 additions & 0 deletions mod.json
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"
}
Loading

0 comments on commit fe8e144

Please sign in to comment.