Skip to content

Commit

Permalink
Initial commit: add Simply Cosmic Shading 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StartsMercury committed Jul 8, 2024
0 parents commit 6ca2035
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# See original:
# https://github.com/CRModders/repository/blob/a3bb8e4818996e8d05a11c13e55b494e942886d0/.github/workflows/static.yml

# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024-present StartsMercury

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Mod Repository for Cosmic Reach

[CRM-1] Mod Repo for resolving/discovering mods published by [@StartsMercury].

[CRM-1]: https://github.com/CRModders/CRM-1
[@StartsMercury](https://github.com/StartsMercury)

Hosts the following mods:

- [Simply Cosmic Shading] v0.1.0

[Simply Cosmic Shading]: https://github.com/StartsMercury/simply-cosmic-shading
23 changes: 23 additions & 0 deletions repository.hjson
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
$schema: https://raw.githubusercontent.com/CRModders/CRM-1/main/spec/version-2.json

specVersion: 2
lastUpdated: 0
rootId: io.github.startsmercury

mods: [
{
id: io.github.startsmercury.simply-cosmic-shading
name: Simply Cosmic Shading
desc: Directional shade for Cosmic Reach.
authors: [
StartsMercury
]
version: 0.1.0
gameVersion: "[0.1.39]"
url: https://github.com/StartsMercury/simply-cosmic-shading/releases/download/0.1.0%2Bcr0.1.39/simply-cosmic-shading-0.1.0+cr0.1.39.jar
deps: []
ext: {}
}
]
}

0 comments on commit 6ca2035

Please sign in to comment.